本文主要是介绍conda创建环境以及pip换源,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
配置环境
# 生成虚拟环境,假设该环境名为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
这篇关于conda创建环境以及pip换源的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!