nodejs、git、cmd、npm、pip设置代理方式及仓库配置

npm设置代理的语句:
npm config set proxy http://proxy.company.com:8080
npm config set https-proxy http://proxy.company.com:8080

npm删除代理
npm config delete proxy
npm config delete https-proxy
其它详细参数:https://npmjs.org/doc/config.html

直接给linux设置代理
export http_proxy http://proxy.company.com:8080
export https_proxy http://proxy.company.com:8080

npm升级
npm install -g npm

npm查看代理
npm config get proxy

npm查看远程仓库
npm config get registry

npm设置仓库
npm config set registry http://registry.npmjs.vitecho.com

windows:cmd设置代理
set http_proxy=http://proxy.yourname.com:8080
set http_proxy_user=<你的用户名> (没有可以不设置)
set http_proxy_pass=<你的密码> (没有可以不设置)

git设置代理
1、不需要账号密码:
git config --global http.proxy http://proxy.yourname.com:8080
2、需要账密登录:
git config –-global http.proxy http://user:[email protected]:8080
代理设置完成后,会在系统中产生一个.gitconfig文件C:\Users\YourComputer
git查看代理
git config –-get –-global http.proxy

git删除代理
git config --system (或 --global 或 --local) --unset http.proxy

pip代理设置

pip install pachagename --proxy=“username:pwd@http://proxy_addr:port”

pip install pachagename --proxy=“http://proxy_addr:port”

淘宝镜像:http://blog.csdn.net/nzb329/article/details/51935236
代理设置:http://blog.csdn.net/zzf112/article/details/25314819
cmd代理设置:http://blog.csdn.net/kk791159796/article/details/18356781
shasum check fail:http://blog.csdn.net/enson16855/article/details/23299787

你可能感兴趣的:(项目实战,大数据可视化)