Can't install Jupyter Notebook in Atom

Solution 1:

jupyter-notebook is an Atom package that works like Jupyter Notebook, but inside Atom. It's registered as an opener for .ipynb files.

To install jupyter-notebook in Ubuntu 20.04 and later open the terminal and type:

sudo apt-get install python-all python3-pip jupyter-notebook jupyter     
sudo pip3 install jupyter_kernel_gateway  
apm install jupyter-notebook # or search for jupyter-notebook package inside of Atom 

To install jupyter-notebook in Ubuntu 18.04-19.10 open the terminal and type:

sudo apt-get install python-all python3-pip python3-notebook jupyter jupyter-core python-ipykernel  
sudo pip3 install jupyter_kernel_gateway  
apm install jupyter-notebook # or search for jupyter-notebook package inside of Atom  

Usage:

Run cell: Shift + Enter

If you are not running Ubuntu 18.04 the instructions for installing Jupyter Notebook are a bit more complicated. Comment if you need these instructions to be added to this answer.