Python Version Jupyter
Configure Jupyter Notebook With Python Version
How to Install multiple python Version and Enable jupyter notebook with Particular Version
- First locate python directories
Ex. My case its in
usr/local/bin/python3
usr/local/bin/python3.9
I would suggest to use virtual environment and then configure python version with it
As I am selecting python3.9
-
Pip install virtualenv
-
virtualenv -p /usr/local/bin/python3.9 jup_env
-
source jup_env/bin/activate
-
jupyter notebook –allow-root
Then type jupyter notebook in terminal. Verify version by writing !python –version in cell.