How To Install the Anaconda Python Distribution on Ubuntu 20.04
"How To Install the Anaconda Python Distribution on Ubuntu 20.04"
We hope this post helped you to find out "How To Install the Anaconda Python Distribution on Ubuntu 20.04"
Introduction
Anaconda is an open-source bundle supervisor, setting supervisor, and distribution of the Python and R programming languages. It’s generally used for information science, machine studying, large-scale information processing, scientific computing, and predictive analytics.
Providing a set of over 1,000 information science packages, Anaconda is accessible in each free and paid enterprise variations. The Anaconda distribution ships with the conda
command-line utility. You possibly can study extra about Anaconda and conda
by studying the official Anaconda Documentation.
This tutorial will information you thru putting in the Python Three model of Anaconda on an Ubuntu 20.04 server.
"Install the Anaconda Python Distribution on Ubuntu 20.04"
Conditions
Earlier than you start with this information, you must have a non-root consumer with sudo privileges arrange in your server.
You possibly can obtain this prerequisite by finishing our Ubuntu 20.04 preliminary server setup information.
Installing in Anaconda
One of the best ways to put in Anaconda is to obtain the most recent Anaconda installer bash script, confirm it, after which run it.
Discover the most recent model of Anaconda for Python Three on the Anaconda Downloads page. On the time of writing, the most recent model is 2020.02, however you must use a later secure model whether it is out there.
Subsequent, change to the /tmp
listing in your server. It is a good listing to obtain ephemeral objects, just like the Anaconda bash script, which we received’t want after working it.
cd /tmp
Use curl
to obtain the hyperlink that you simply copied from the Anaconda web site. We’ll output this to a file referred to as anaconda.sh
for faster use.
curl https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh --output anaconda.sh
We will now confirm the info integrity of the installer with cryptographic hash verification by way of the SHA-256 checksum. We’ll use the sha256sum
command together with the filename of the script:
sha256sum anaconda.sh
You’ll obtain output that appears just like this:
Output
2b9f088b2022edb474915d9f69a803d6449d5fdb4c303041f60ac4aefcc208bb anaconda.sh
It’s best to examine the output towards the hashes out there on the Anaconda with Python 3 on 64-bit Linux page in your acceptable Anaconda model. So long as your output matches the hash displayed within the sha2561
row, you’re good to go.
Now we will run the script:
bash anaconda.sh
You’ll obtain the next output:
Reading full article
https://www.mstvlife.com/anaconda-python-distribution-on-ubuntu-20-04/