This document is intended to help troubleshoot problems in the Python Interactive Window.
This error can happen when
- Jupyter is out of date
- Jupyter is not installed
- You picked the wrong Python environment (one that doesn't have Jupyter installed).
The Python you're using is picked with the selection dropdown on the bottom left of the VS Code window:
Run the following command from an environment that matches the Python you selected:
python -m jupyter notebook --version
If this command shows any warnings, you need to upgrade or fix the warnings to continue with this version of Python. If this command says 'no module named jupyter', you need to install Jupyter.
You can do this in a number of different ways:
Anaconda is a popular Python distribution. It makes it super easy to get Jupyter up and running.
If you're already using Anaconda, follow these steps to get Jupyter
- Start anaconda environment
- Run 'conda install jupyter'
- Restart VS Code
- Pick the conda version of Python in the python selector
Otherwise you can install Anaconda and pick the default options https://www.anaconda.com/download
You can also install Jupyter using pip.
- python -m pip install --upgrade pip
- python -m pip install jupyter
- Restart VS Code
- Pick the Python environment you did the pip install in
For more information see http://jupyter.org/install