Installing and setting up Jupyter Notebook¶
Checking your Python install¶
You might want to start by checking that your shared Python environment is active. Run which python and python --version to make sure it looks like the "right" Python is being used.
If you do not see (lede) at the beginning of your command line, activate the environment:
Does python --version look good? Does which python mention .venvs and lede?
If not, you'll want to check the Python installation guide.
Install Jupyter¶
You can install Jupyter Notebook with the following command:
It might be quick, it might be slow, but hopefully it eventually finishes without any errors! Don't worry if it yells WARN about pip versions or something, it's no big deal unless it actually says ERR or ERROR.
Confirm it worked
Run the following command to try to check Jupyter's version number.
If it says "command not found," it didn't work. If it says anything else, you're okay.
Setting your Python as the Jupyter Python¶
When you have multiple versions of Python on your computer, it turns out that sometimes the command line Python and the Jupyter Python don't match up.