下面环境替换成自己的环境即可。
1.1 windows
将D:\anaconda\Scripts和D:\anaconda添加到环境变量中。
1.2 linux
打开:vim ~/.bashrc
添加:export PATH=~/anaconda3/bin:$PATH 到~/.bashrc中
然后:source ~/.bashrc
或者一行代码即可:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
2. 1 widows
windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下:
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
2.2 linux
linux的文件在~/.pip/pip.conf中添加:
vim ~/.pip/pip.conf 添加进去即可。
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
3.1 windows(好像清华和中科院的不能用了)
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
2. 执行命令:
conda config --set show_channel_urls yes
3. 此时,目录 C:\Users<你的用户名> 下就会生成配置文件.condarc
4. 修改上述配置文件,删除上述配置文件 .condarc 中的第三行(即 -defaults),然后保存
5. 查看是否生效,通过命令 conda info 查看当前配置信息,内容如下,即修改成功,看channel URLs 字段内容:
6. 测试一下,安装requests,执行命令:
conda install numpy
3.2 linux
命令行运行以下代码即可:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
详细查看:
conda的安装与使用(2020-6-14更新) www.jianshu.com