实验室服务器由于网络问题需要设置代理
export http_proxy=http://xxxx
export之后经常没用,不知道为什么,所以可以为每个命令设置代理
- wget
wget -e http_proxy=xxxx -c urlyyyy
- pip
pip install --user --proxy=http://xxxx
--user可以只为自己的账号install
- conda需要配置condarc
vi ~/.condarc
channels:
- bioconda
- r
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- defaults
show_channel_urls: true
proxy_servers:
http: http://xxxx
https: https://xxxx
ssl_verify: false