查看当前环境
conda info -e
创建新环境
conda create -n west_envname python=3.6 #west_envname为你自己定义的环境名称 3.6为所需的python版本
删除环境
conda remove -n west_envname --all
重命名环境
conda 其实没有重命名指令,实现重命名是通过 clone 完成的,分两步:
1.先 clone 一份 new name 的环境
2.删除 old name 的环境
比如,想把环境 west_envname 重命名成 tf
第1步
conda create -n tf --clone west_envname
第2步
conda remove -n west_envname --all
查看虚拟环境
conda env list
激活环境
conda activate west_envname
导出当前环境
conda env export > west_envname.yaml
导入环境
conda env create -f west_envname.yaml
pip配置国内多镜像源
pip.ini文件在windows10路径:C:\Users\west\AppData\Roaming\pip\pip.ini
[global]
timeout=60
index-url=http://pypi.douban.com/simple
extra-index-url=http://mirrors.aliyun.com/pypi/simple/
https://pypi.tuna.tsinghua.edu.cn/simple/
http://pypi.mirrors.ustc.edu.cn/simple/
[install]
trusted-host=pypi.douban.com
mirrors.aliyun.com
pypi.tuna.tsinghua.edu.cn
pypi.mirrors.ustc.edu.cn
[freeze]
timeout = 10
conda配置国内镜像源
.condarc文件在windows10路径:C:\Users\west\.condarc
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- defaults
show_channel_urls: true
ssl_verify: true
--Mr.west