当前位置:   article > 正文

python编程环境配置http代理_python虚拟环境指定网络代理

python虚拟环境指定网络代理

需求:公司网络要走代理服务器,所以需要win10系统中配置git, pip, 以及ubuntu子系统走http代理。

各个工具都有局部的或者全局的配置文件,配置起来很方便,记录于此以防遗忘。其中win10配置的是用户级的,ubuntu子系统直接做了全局配置。

  1. git: git设置HTTP代理
git config --global http.proxy http://proxyUsername:proxyPassword@proxy.server.com:port
git config --global https.proxy https://proxyUsername:proxyPassword@proxy.server.com:port
  • 1
  • 2
  1. pip: pip User Guide, How to configure PIP per config file to use a proxy (with authentification)?

    修改pip.ini文件,windows的话是在%APPDATA%路径里面,没有就建一个。添加:
[global]
proxy = http://user:password@proxy_name:port
  • 1
  • 2
  1. conda: Python Anaconda Proxy Setup via .condarc file on Windows
    修改.condarc文件,windows 的话在C:\Users\username路径里,可以用conda config --write-default生成默认设置文件。添加:
proxy_servers:
    http: http://username:password@corp.com:8080
    https: https://username:password@corp.com:8080
  • 1
  • 2
  • 3

注意都是空格,不然YAML会报错。

  1. ubuntu子系统:Systemwide proxy settings in ubuntu
    直接设置了全局代理,apt-get、git、pip都可用。
    修改/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/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/593946
推荐阅读
相关标签
  

闽ICP备14008679号