内网 linux 使用conda安装三方件
1.首先wget baidu.com 查看当前环境对外网的连通性
2.如果不能联通,则配置代理,配置代理的方法有很多,这里举例使用export方法
export http_proxy="http://用户:密码@proxy.huawei.com:8080"
export https_proxy="http://用户:密码@proxy.huawei.com:8080"
3.重新查看当前环境对外网联通性,如果能联通继续往下,否则解决网络联通性
4.配置~/.condarc文件,
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- defaults
ssl_verify: false
show_channel_urls: True
5.使用conda install进行安装