I hope someone can help me out with the following;
On my mac I have by default Python 2.x. I now have to open Jupyter notebook with Python 3.8 from the terminal. I have already downloaded Python 3.8. I tried python3 -m notebook but this doesn’t seem to work. Does someone know how to do this?
To download pip I used in my terminal:
$ sudo easy_install pip
Using the terminal I installed the package
$ pip install rdflib
then I installed Jupyter notebook in my terminal using:
$ pip install jupyterlab
Thanks!
python3 -m notebook?pip3 install ...orpython3 -m pip install ...