解决 pip ERROR: Could not install packages due to an OSError: Missing dependencies for SOCKS support.

0. 背景

安装 python 环境时出现下面问题:

$ pip install -r requirements.txt
Looking in indexes: https://mirror.baidu.com/pypi/simple/, http://mirrors.aliyun.com/pypi/simple/
ERROR: Could not install packages due to an OSError: Missing dependencies for SOCKS support.

WARNING: There was an error checking the latest version of pip.

这是系统缺少必要的SOCKS依赖项或环境变量中设置了SOCKS代理

1. 查看配置

 pip config list
global.extra-index-url='http://mirrors.aliyun.com/pypi/simple/'
global.index-url='https://mirror.baidu.com/pypi/simple/'
global.proxy='socks5://127.0.0.1:1080'
global.timeout='120'
global.trusted-host='\npypi.baidu.com\nmirrors.aliyun.com'

也就是 pip.conf 中设置的内容

$ cat ~/.pip/pip.conf
[global]
proxy = socks5://127.0.0.1:1080
index-url = https://mirror.baidu.com/pypi/simple/
extra-index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = 
    pypi.baidu.com 
    mirrors.aliyun.com                    

timeout = 120

2. 解决问题

终端中输入 取消所有SOCKS代理设置 的命令,清除所有与SOCKS相关的代理设置

unset all_proxy && unset ALL_PROXY

确保Python环境中已安装pysocks库,因为Python本身在没有安装pysocks时并不支持SOCKS5代理

conda install -c anaconda pysocks

然后

pip install pysocks --proxy 127.0.0.1:1080

最后升级pip到最新版本,以确保所有的包管理工具都是最新的,并且兼容当前的Python环境

pip install --upgrade pip

最后安装:

pip install -r requirements.txt

成功。
参考:
python pip安装失败11001错误 解决方法

  • 7
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值