-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Jupyter (IPython) Prerequisites
Don Jayamanne edited this page Oct 26, 2016
·
4 revisions
Before you start using Jupyter with Visual Studio Code you will need to ensure you have either Jupyter or IPython installed locally.
Note: You need to install either Jupyter or IPython.
- Installing Jupyter using Anaconda and conda
-
Alternative for experienced Python users: Installing Jupyter with pip
- As an existing Python user, you may wish to install Jupyter using Python’s package manager, pip, instead of Anaconda.
- First, ensure that you have the latest pip; older versions may have trouble with some dependencies:
pip3 install --upgrade pip
- Then install the Jupyter Notebook using:
pip3 install jupyter
- Use pip if using legacy Python 2.
- If you already have Python installed and are familiar with installing packages, you can get IPython with pip:
pip install ipython
Once the Prerequisites have been installed and setup you might want to have a look at the Getting Started section or the Examples section.