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:
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.
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.
–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.
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.
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.
Step 5: Checking the installed Anaconda packages
To verify the installation of your package, use the conda command to view the verification information.
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.