Tutorial to be taught the steps contain within the set up of Jupyter Pocket book on Ubuntu 20.04 Focal Fossa utilizing the command Terminal.
What’s Jupyter Pocket book?
The Jupyter Undertaking is a non-profit initiative that goals to develop and supply open-source software program and open requirements for interactive work. Probably the most well-known merchandise of the venture is Jupyter Pocket book. It’s software program for sharing and creating interactive worksheets that work on the client-server precept. In a Jupyter pocket book, numbers, textual content, graphics, and executable program code will be mixed and made out there to customers. Different merchandise embrace JupyterLab, JupyterHub, and Voilà.
Steps to put in Jupyter on Ubuntu 20.04 Linux
The instructions given right here can be utilized for different Linux programs primarily based on Ubuntu corresponding to Linux Mint, POP OS, and extra…
1. Replace Ubuntu 20.04
To carry out this tutorial we want Ubuntu or its primarily based Linux programs with a non-root sudo entry consumer and Python atmosphere. And earlier than shifting additional, first carry out the system replace that may rebuild the APT bundle supervisor cache.
sudo apt replace && sudo apt improve
2. Set up Python3 & PIP3 for Jupyter
The newest model of Python is 3, out there to put in by way of the official repository of Ubuntu 20.04. As a result of we want a Python atmosphere to put in and use Jupyter Pocket book. Subsequently, first, set up it.
sudo apt set up python3
Additionally, we want a PIP bundle supervisor to put in Jupyter Pocket book, therefore get that as nicely.
sudo apt set up python3-pip
3. Improve PIP and set up virtualenv
As soon as the above-given instructions are accomplished, each Python3 and PIP3 will probably be in your system. Now, let’s first improve our system’s default PIP model to the newest one.
sudo pip3 set up --upgrade pip

After that additionally set up virtualenv bundle, a software for creating remoted digital python environments.
sudo pip3 set up virtualenv

4. Create a Python digital atmosphere for Jupyter
As a substitute of putting in Jupyter globally, let’s create an remoted Python atmosphere for it. Subsequently, right here we’re creating our venture listing known as – demo you’ll be able to title the folder no matter you need.
mkdir demo
Create a brand new Digital atmosphere contained in the folder.
cd demo
Let’s give it a name- notebookenv
, in fact, you’ll be able to assign a reputation no matter you need.
virtualenv notebookenv
Now, activate and cargo the created python atmosphere in your present shell.
supply notebookenv/bin/activate
You will notice that your bash shell has been switched to your created atmosphere.
5. Set up Jupyter Pocket book on Ubuntu 20.04
Lastly, use Python’s PIP bundle supervisor to put in Jupyter in your Ubuntu Linux for the created atmosphere.
pip set up jupyter

6. The way to open the Jupyter Pocket book Net interface
As soon as the set up is accomplished, execute the given command that may open the net interface in your native browser to entry your Jupyter Pocket book venture.
jupyter pocket book

To create a brand new pocket book file, choose New > Python 3 given on the best facet and begin writing your code.


Different Articles:
• How to install Anaconda Navigator on Ubuntu 20.04 LTS
• Install & play the 2048 game on Ubuntu 22.04 or 20.04 LTS Linux
• How to install Kitty Terminal on Ubuntu 22.04
• Learn how to install KVM on Ubuntu 20.04 LTS server
