Follow the instruction of this document to setup conda and Jupyter notebook on your machine.
- Download Miniconda from official website
- Install Miniconda following official instructions
Make sure adding conda python to your PATH
!
Run the following command to set up a conda environment with python and Jupyter 6.
conda create -n myenv python=3.9 notebook=6.4.8
Activate the environment:
conda activate myenv
Run Jupyter notebook:
jupyter notebook # For localhost
jupyter notebook --ip 0.0.0.0 # For public access