How to create an environment in Anaconda

How to create an environment in Anaconda

foreword

Creating from Anconda is not recommended

Anaconda Prompt

After configuring Anaconda's environment in the system variable path:
insert image description here
enter in the terminal

 conda create -n 环境名称 python=3.9

The version of Python here is changed as needed. There
may be some additional installation needs in the middle, and Y can be used
. After the installation is complete:
insert image description here
View the installed environment:

conda env list

insert image description here

Guess you like

Origin blog.csdn.net/weixin_50679163/article/details/124287921