Class Overview Python Installation Anaconda Installation Jupyter Notebook Interface Introduction Setting Working Directory Creating and Saving a script file File Execution 2
3
4
5
6
Anaconda Installation 7
8
9
10
11
12
13
14
15
To launch a Jupyter notebook, Open your Anaconda Prompt Navigate to the directory where you would like to save your notebook files. Then type the command jupyter notebook and the program will instantiate a local server at localhost:8888. Launch a Jupyter Notebook 16
17
18
19
To Create a Jupyter notebook File, Click on New and select python 3( ipykernal ) Creating , Saving and Executing Jupyter Notebook File 20
To Save a Jupyter notebook File, Click on Untitled1 and type suitable file name. 21
To Execute a Jupyter notebook File, Click on Cell and write code. ESC to enter into Command Mode( Blue Color) ENTER to enter into Edit Mode( Green Color) Ctrl + Enter to execute a cell Shift + Enter to Execute a cell and create new cell ‘a’ in command mode to create new cell ABOVE ‘b’ in command mode to create new cell BELLOW ‘ dd ’ in command mode to delete a cell 22