conda常用命令

安装:minconda

https://docs.conda.io/en/latest/miniconda.html 

conda install:指定build,https://blog.csdn.net/qq_34877350/article/details/79553818

conda list

conda search

conda remove

conda create

conda config add 

-----------

conda info

-----------

安装环境刻录:

https://blog.csdn.net/menc15/article/details/71477949/




conda install --channel https://conda.anaconda.org/anaconda tensorflow=1.8.0
conda remove -n xxxx --all //创建xxxx虚拟环境
conda list         #查看已经安装的文件包
conda update xxx   #更新xxx文件包
conda uninstall xxx   #卸载xxx文件包
 

https://www.jianshu.com/p/7ebe1df808ba

原文地址:https://www.cnblogs.com/Wanggcong/p/12640807.html