Python Series
Installing Python and Jupyter Notebook
A Turorial
Apr 19, 2020
Hi, I would share the way I prepare my worksheet to code Python supported by Jupyter notebook. Here, I prefer Anaconda since it gets both of them.
Go to https://www.anaconda.com/distribution/ to install Anaconda. For note, be sure that its version suits the computer we have. Just follow the instruction to install the software easily.
Open up the Anaconda Prompt and check the version of python we have just installed. Write python — version
We could directly write the Python codes on Anaconda Prompt by starting with python and terminating with exit(). Alternatively, we employ the codes on Jupyter notebook. There are 2 ways to open it.
Select the directory to save our works. For me, Desktop is chosen. Then on the top right, click New → Python 3 to reveals the workspace.
Tada… here it is