Anaconda + VScode Python environment to build multi-images under Windows is very detailed

How to build your own python deep learning environment under windows system;
it is recommended to collect;

1 Download Anaconda and Vscode

The demo computer is a 64-bit operating system;
Anaconda official website download;
link https://www.anaconda.com/products/individual
Insert picture description here
Vscode official website download;
link https://code.visualstudio.com/
Insert picture description here

2 Install Anaconda and VScode

Find the directory we downloaded and run them separately;
Insert picture description here
pay attention to check the following;
when installing VScode;
Insert picture description here
when installing Anaconda;
Insert picture description here

3 Open VScode and install related plug-ins

For example, we search for Anaconda Extension Pack to install; the
Insert picture description here
effect after completion is as follows;
Insert picture description here

4 Load the Anaconda environment

Insert picture description here
Click Python 3.8.5… in 1;
then click the environment in 2;
that is , the environment of Anaconda is activated in VScode;

5 test

Test method 1, as shown in the figure below, since the python built-in environment does not have a Numpy scientific computing library, if it can be imported, the Anaconda environment has been loaded;
Insert picture description here
test method 2, as shown in the figure below, open the command prompt and enter

conda info -e

The output of the following figure indicates that Anaconda is installed;
Insert picture description here

6 other

For Anaconda's multi-environment creation, modification, and deletion, please refer to other blogs of this blogger, thank you!
If you find it useful, please like it, thank you!

Guess you like

Origin blog.csdn.net/ao1886/article/details/110950502