Learn how to ...
Follow the official instructions
Follow the official instructions
Follow the official instructions
Windows: launch Anaconda Prompt
from the Start Menu. Mac: launch the Terminal
app. Linux: launch a terminal.
At the command prompt, enter python
and hit ENTER.
To exit Python, enter exit()
and hit ENTER.
At the command prompt, execute conda create --name py37 python=3.7 jupyter
When prompted for yes or no, enter y
The command above does the following -
py37
.jupyter
library. This library will provide the Jupyter Notebook we will be using later.On Windows, Anaconda Prompt
's command prompt always shows the current virtualenv in use. When the root environment is in use, it displays (base)
.
On Mac or Linux, the terminal will not show anything when root environment is used.
To change to our newly created environment, execute conda activate py37
To exit the current environment, execute conda deactivate
Activate our environment at the command prompt, and then execute jupyter notebook
.
Click New
on the upper RHS, and select Folder
from the dropdown.
Check the folder to be renamed, click Rename
on the upper LHS, and type new folder name WITHOUT SPACE.
Click on the folder you just created. Once inside, click New
on the upper RHS, and select Python 3
from the dropdown.
Click on File
and select Rename
from the dropdown. Type in new name WITHOUT SPACE. Note: leave the folder name before the /
alone.