Conda常用命令和操作

用conda创建Python虚拟环境

创建:

conda create -n environment_name python=X.X

激活:

activate environment_name

退出环境:

deactivate

查看已有环境:

conda info -e

删除已有环境:

conda remove -n environment_name --all

从requirements.txt中安装所有的包:

pip install -r requirements.txt

参考链接:https://blog.csdn.net/weixin_41010198/article/details/87915058

pip freeze > requirements.txt

导出项目的环境 (如果出现 -ip20什么的错,根据提供的路径删除掉)
(pip list --format=freeze > requirements.txt 如果出现@file https://blog.csdn.net/qq_36078992/article/details/109435000)
https://www.pianshen.com/article/8449983175/

你可能感兴趣的:(python,conda,python)