While Jupyter runs code in many programming languages, Python is a requirement (Python 3.3 or greater, or Python 2.7) for installing the classic Jupyter Notebook.
Install Anaconda (it has most of the packages we need) from here. (Read the instructions carefully)
Open command prompt (Press Windows button and type ‘cmd’)
Enter the following command to run
jupyter notebook
(or you can directly launch in Anaconda Navigator)
Install Anaconda (it has most of the packages we need) from here. (Read the instructions carefully)
Open terminal and enter the following command to run
jupyter notebook
Install Anaconda (it has most of the packages we need) from here. (Read the instructions carefully)
Open terminal (Press CTRL + ALT + T)
Enter the following command to run
jupyter notebook
Python is usually pre-installed in Linux distribution.
If you are using Ubuntu 16.04 then the pre-installed python versions are 2.7.12 and 3.5.2.
To check your python version, type 'python3' in terminal. If it doesn't work, 'python'.
- Confirm that your python version is 3.6+.
If not, install python from https://www.python.org/ftp/python/3.8.2/Python-3.8.2.tar.xz
or use the following command in terminal
sudo apt install python3.8;
- Install pip using
sudo apt install python3-pip;
- Install jupyter and other important packages using
pip3 install bs4 requests jupyter scipy astropy matplotlib;
- Enter the following command to run notebook
jupyter notebook;