赞
踩
需求:公司网络要走代理服务器,所以需要win10系统中配置git, pip, 以及ubuntu子系统走http代理。
各个工具都有局部的或者全局的配置文件,配置起来很方便,记录于此以防遗忘。其中win10配置的是用户级的,ubuntu子系统直接做了全局配置。
git config --global http.proxy http://proxyUsername:proxyPassword@proxy.server.com:port
git config --global https.proxy https://proxyUsername:proxyPassword@proxy.server.com:port
%APPDATA%
路径里面,没有就建一个。添加:[global]
proxy = http://user:password@proxy_name:port
C:\Users\username
路径里,可以用conda config --write-default
生成默认设置文件。添加:proxy_servers:
http: http://username:password@corp.com:8080
https: https://username:password@corp.com:8080
注意都是空格,不然YAML会报错。
/etc/environment
文件,改变环境变量:http_proxy=http://username:password@host:port/
ftp_proxy=ftp://username:password@host:port/
https_proxy=https://username:password@host:port/
HTTP_PROXY=http://username:password@host:port/
FTP_PROXY=ftp://username:password@host:port/
HTTPS_PROXY=https://username:password@host:port/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。