
pip换源
baidu_huihui
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
pip与anaconda配置国内源
anacondaanaconda删除原来添加的清华镜像源的方法如下: (1)conda config --show channels 显示目前conda的数据源有哪些 第一个是清华源,第二个是默认的 删除第一个数据源conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/现在就剩默认的数据源了,无需其他操作,可以正常使用conda了2.pip换源pip co原创 2020-08-07 19:32:43 · 1031 阅读 · 0 评论 -
anaconda conda 切换为国内源
anaconda conda 切换为国内源windows下在清华源和中科大源之间自行选择1 添加清华源命令行中直接使用以下命令conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge cond转载 2020-08-06 20:21:21 · 3563 阅读 · 0 评论 -
Tensorflow安装错误之 Cannot uninstall wrapt
Tensorflow安装错误之 Cannot uninstall wrapt问题描述:Installing collected packages: wrapt, tensorflow Attempting uninstall: wrapt Found existing installation: wrapt 1.10.11ERROR: Cannot uninstall 'wrapt'. It is a distutils installed project and thus wec...原创 2020-07-21 15:19:17 · 1667 阅读 · 0 评论 -
pip/anaconda修改镜像源,加快python模块安装速度
pip/anaconda修改镜像源,加快python模块安装速度 修改镜像源的原因是pip和conda默认国外镜像源,所以每次安装模块pip install ×××或者 conda install ×××的时候非常慢。所以,切换到国内的镜像源会显著加快模块安装速度。pip和conda修改镜像源的方式有所不同,网上有大量教程,我把这些教程总结到一起。pip修改镜像源国内源:新版ubuntu要求使用https源,要注意。清华:https://pypi.tuna.tsinghua.e...原创 2020-06-19 09:42:59 · 887 阅读 · 0 评论