How to install anaconda in Ubuntu 04/20

All installation activities in Ubuntu require the packages to be updated before proceeding. Anaconda is characterized by its many functional capabilities, including the management of system packages, the calculation and processing of large data, the manipulation of predictive analytics and the implementation of programming in the Python language. From a broader perspective, Anaconda is a dedicated machine learning podium. Anaconda serves as a command line tool, while Navigator is based on a graphical user interface (GUI). Anaconda is also compatible with Mac, Windows, and Linux operating systems. Two of the most important Anaconda depot tools are the Navigator. It is always recommended that you install the latest version of any open source server that you plan to install on Linux.

This article will show you how to install Anaconda on your Ubuntu 20.04 system.

requirements

The requirements for installing Anaconda on Ubuntu 20.04 require the user to log in as the root user. Access to the terminal or command line, as well as the details of the latest version of Anaconda, are the basic pre-installation requirements. You can check the details of the latest version of Anaconda through the web source at the following link:

https://www.anaconda.com/distribution/

Installation process

The entire process of installing an anaconda consists of 5 basic procedural steps.

Step 1: Update the APT package

Step 2: Download the Latest Version of Anaconda

Step 3: Verify data integrity

Step 4: installing packages

Step 5: Checking the installed Anaconda packages

Step 1: Update the APT package

The first and most important rule when installing a program on Linux is to update the system packages. Update your existing system packages with the following command:

$ sudo apt update && Update

Next, download curl if you don’t already have it on your Ubuntu system. Curl helps implement the commands for installing Anaconda. Apply this command to get curl on your system.

$ sudo suitable To install Beckon

Step 2: Download the latest version of Anaconda. down

You can use the curl tool in the system command terminal to download the anaconda installer after switching to the tmp repository.

$ CD /tmp

$ curl https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh
–Exit anaconda.sh

Note that the 2020.02 version mentioned in the command above is only compatible with Python 3.7. So if you are running the 2.7 version of Python, use the link above to find the compatible version of Anaconda with your Python 2.7 version.

Step 3: Verify data integrity

The following command will help you verify the data integrity of your downloaded version of Anaconda.

$ sha256sum Anaconda3–2020.02– Linux – x86_64.sh

Now compare the code shown on your output screen with the hash code on the Anaconda version page. Both codes should match, or you are not using the compatible version of anaconda that matches your version of python and the utility will not work properly in that case.

Step 4: installing packages

In order to proceed with the installation process you will need to run the bash script.

$ bash anaconda.sh

Write a different version number if you are using a different version of Anaconda. After the command has been successfully executed, a license agreement will appear on your output screen. Press Enter and type “Yes” to grant permission and continue. It is preferable to keep the default location. Once you open the window, your output screen will show you a description of the completed installation. After you have agreed to all agreements, you can now activate your installation program by pressing Enter.

$ source ~/.bashrc

Step 5: Checking the installed Anaconda packages

To verify the installation of your package, use the conda command to view the verification information.

$ conda info

The output screen gives you all the information about your installed Anaconda package.

diploma

Hopefully, this step-by-step process has made your Anaconda installation process easier in Ubuntu 20.04. Remember to choose the version of Anaconda that matches your version of Python. Also keep the version in mind when you enter a command in your terminal system. This will ensure that you can run Anaconda properly in Ubuntu 20.04.

Related Posts