SoFunction
Updated on 2024-11-15

Latest anaconda installation and configuration tutorials

Anaconda is an open source Python distribution that includes Conda, Python, and a whole bunch of installed toolkits, such as: numpy, pandas, and so on. Among them, Conda is an open source package, environment manager that can be used to install different versions of packages and their dependencies on the same machine (computer), and be able to switch between different environments. Essential platform for deep learning.

1、First enter the official websiteSelect View All Installers

2, here is anaconda's various installer version, anaconda3 on behalf of the version of Python3, followed by the release date, I chose a slightly older version of 2020.02 for Windows, and is 64-bit. You are free to choose any date of the version, and then download to the local.

3. Run the installation package, and then follow each step below.

This step is the installation path, I put it in the anaconda3 folder in the D drive.

This step shows that the default environment is Python 3.7, then install

Waiting for the installation, it won't take long, I heard that triple link speeds it up

Remove the checkmarks from both boxes and Finish to complete the installation.

4. Test whether the installation is successful

Open the anaconda command line in the menu bar, also known as Anaconda Prompt (anaconda3)

After clicking on it, if you can see BASE in the brackets on the left side of the command line, it means the installation was successful!

5. Create and activate the environment

conda create -n py37 python=3.7 is to create python version 3.7 with the name py37 environment. Here the environment name and python version can be specified by yourself.

Enter y, and then enter to download, download and installation will be prompted after the done, like this is installed.

conda activate py37 Activate the environment.

You can see the front from base to py37, which means we enter the environment, you can directly understand the environment as a folder.

conda deactivate Exit environment.

It's very similar to how we usually switch directories with cd on the cmd command line.

The detailed environment operation of anaconda can be seen here:anaconda create and delete environments

This article on the latest anaconda installation configuration tutorial is introduced to this article, more related anaconda installation configuration content please search for my previous articles or continue to browse the following related articles I hope that you will support me in the future!