阅读量:0
在无法直接访问外部网络的情况下,可以通过配置代理服务器来使用pip install
命令。以下是几种常见的代理设置方法:
临时设置代理
Windows系统:
set HTTP_PROXY=http://[user:password@]proxy_server:port set HTTPS_PROXY=http://[user:password@]proxy_server:port
Linux/Unix系统:
export HTTP_PROXY=http://[user:password@]proxy_server:port export HTTPS_PROXY=http://[user:password@]proxy_server:port
永久设置代理
Windows系统:
在
%APPDATA%\pip\pip.ini
文件中添加以下内容:[global] index-url=https://mirrors.aliyun.com/pypi/simple/ proxy=http://[user:password@]proxy_server:port [install] trusted-host=mirrors.aliyun.com
Linux/Unix系统:
在
~/.pip/pip.conf
文件中添加以下内容:[global] index-url=https://mirrors.aliyun.com/pypi/simple/ proxy=http://[user:password@]proxy_server:port [install] trusted-host=mirrors.aliyun.com
使用环境变量设置代理
Windows系统:
在命令行中输入以下命令:
set HTTP_PROXY=http://[user:password@]proxy_server:port set HTTPS_PROXY=http://[user:password@]proxy_server:port
Linux/Unix系统:
在命令行中输入以下命令:
export HTTP_PROXY=http://[user:password@]proxy_server:port export HTTPS_PROXY=http://[user:password@]proxy_server:port
使用Fiddler代理
- 在Fiddler中设置代理账号密码,并将其加密后添加到Fiddler的OnBeforeRequest函数中。
使用第三方库
- 使用
pproxy
等第三方库来搭建本地代理。
使用pip配置文件
- 在
pip.conf
文件中设置代理,该文件的位置因操作系统而异。
希望这些方法能帮助您解决pip install
时的代理设置问题。