Please find the link to intro slide here.
You will need Python on your local machine to work through this tutorial. I recommend using the Anaconda distribution to use python on your machine. Kindly follow the below steps to setup your machine:
Install Anaconda: Kindly follow the steps given at the link: for windows here and for linux here. Make sure to install the Anaconda for python version 3.7
Create a Virtual Environment: I strongly suggests you to always work with using different environment setups for your different projects to manage their individual dependencies. So, create a separate environment for this workshop and other works related to BCS Winter Camp '19'.
- Open terminal in linux or Anaconda CMD in windows and run
conda create --name bcs_iitk python=3.7 anaconda
to create a virtual environment with name bcs_iitk - To work inside this environment activate it before executing any python program, run
conda activate bcs_iitk
- Once, you are done with your work exit the environment by running
conda deactivate
- Make a new directory
mkdir bcs_iitk_winter_19
- Change your directory
cd bcs_iitk_winter_19
- Run
jupyter notebook
in terminal (linux) or Anaconda CMD (windows) - This will open a link in your browser where you will work with the jupyter notebooks.
- You can work with jupyter notebooks online as well open Google Colab