conda代理设置:(注意conda不可以采用socks代理,需采用http或https代理)
sudo gedit ~/.condarc
加入:
auto_activate_base: false
ssl_verify: true
channels:
- defaults
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
show_channel_urls: true
proxy_servers:
https: http://127.0.0.1:19964
注意,有时候anaconda可能会出现域名不可解析,或者连不上代理等情况,这时需要sudo gedit ~/.condarc,检查一下,是否-default默认的源到了top位置,如果出现了这样的情况,不防删除-default(因为将其移到最后位置,过一段时间可能就又到了top位置,这时我们就不能优先使用国内的源)。
pip代理设置:(永久)
如果没有这个文件夹
mkdir $HOME/.config/pip
sudo gedit $HOME/.config/pip/pip.conf
添加:(经试验这里pip需要指定http)
[global]
proxy=http://127.0.0.1:19964
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
pip代理:(临时)
pip install scipy==1.1.0 --proxy="http://127.0.0.1:19964"
如果上述pip代理不好使,开启系统代理即可:
1.在bashrc文件中添加export http_proxy="http://127.0.0.1:19964"
2.注意需要保存