配置环境
# 生成虚拟环境,假设该环境名为A
conda create -n A python=3.X
# 删除虚拟环境
conda env remove -n A
# 查看有哪些环境
conda env list
# 复制存在的虚拟环境A,生成新环境B
## 方法一
conda create -n B --clone A
## 方法二,假设已有环境路径为D:\A
conda create -n B --clone D:\A
# 退出虚拟环境
conda deactivate A
换源
默认
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 中科大
pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/
# 豆瓣
pip config set global.index-url http://pypi.douban.com/simple/
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
临时使用
pip install -i http://...
去掉默认
pip config unset global.index-url
显示有哪些源
pip config list