Complete steps to install Anaconda3 in Ubuntu environment

Complete steps to install Anaconda3 in Ubuntu environment

Introduction to Anaconda

Python is a powerful programming language that provides many modules for scientific computing, including numpy, scipy, and matplotlib. To use Python for scientific computing, you need to install the required modules one by one, and these modules may depend on other software packages or libraries, so the installation and use are relatively complicated.

For trouble. Fortunately, there are people who specialize in this kind of thing. They compile all the modules needed for scientific computing and then package them in the form of distributions for users to use. Anaconda is one of the commonly used scientific computing distributions. Anaconda is an integration of Python for scientific computing.

1. Download

1.1 Create a folder to store the installation package

mkdir computerSoftware

1.2 Enter the folder:

cd ./computerSoftwa/

1.3 wget command line download:

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-4.0.0-Linux-x86_64.sh

1.4 Download status:

2. Start the installation:

2.1 Go to the location where the file is stored:

cd /usr/local/computerSoftwa

2.2 Run the .sh file:

sha256sum Anaconda3-4.0.0-Linux-x86_64.sh
bash Anaconda3-4.0.0-Linux-x86_64.sh

2.3 Enter the registration information page and enter yes:

2.4 Read the registration information and enter yes; check the location where the file will be installed and press enter to install it:

2.5 Enter the installation process:

2.6 After the installation is complete, you will receive a prompt to add environment variables. Enter yes:

2.7 Seeing this information indicates that the installation has been completed:

3. Add environment variables

Get it done in one line!

echo 'export PATH="~/anaconda3/bin":$PATH' >> ~/.bashrc

4. Verify

conda list 

Enter python in the terminal to start the python interactive interface

Now everything is done.

This is the end of this article about the complete steps to install Anaconda3 in Ubuntu environment. For more information about installing Anaconda3 in Ubuntu, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed tutorial on installing Anaconda3 on Ubuntu 18.04

<<:  CSS3 text animation effects

>>:  Proxy realizes the principle of two-way binding of Vue3 data

Recommend

MySQL Null can cause 5 problems (all fatal)

Table of contents 1. Count data is lost Solution ...

Some details about semicolons in JavaScript

Preface Semicolons in JavaScript are optional, an...

Detailed explanation of CSS pre-compiled languages ​​and their differences

1. What is As a markup language, CSS has a relati...

Use a diagram to explain what Web2.0 is

Nowadays we often talk about Web2.0, so what is W...

Detailed explanation on how to deploy H5 games to nginx server

On the road to self-learning game development, th...

Web Design Teaching or Learning Program

Section Course content Hours 1 Web Design Overvie...

Key points for writing content of HTML web page META tags

The META tag is an auxiliary tag in the head area...

Example of how to set automatic creation time and modification time in mysql

This article describes how to set the automatic c...

js dynamically adds example code for a list of circled numbers

1. Add the ul tag in the body first <!-- Unord...

Nginx local directory mapping implementation code example

Sometimes you need to access some static resource...

Solution for using Baidu share on Https page

Since enabling https access for the entire site, ...

HTML table markup tutorial (22): row border color attribute BORDERCOLORLIGHT

Within rows, light border colors can be defined i...

Differences and comparisons of storage engines in MySQL

MyISAM storage engine MyISAM is based on the ISAM...