解决 pip ERROR: Could not install packages due to an OSError: Missing dependencies for SOCKS support.
Dependencies
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
项目地址:https://gitcode.com/gh_mirrors/de/Dependencies
免费下载资源
·
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错误 解决方法
GitHub 加速计划 / de / Dependencies
8.61 K
704
下载
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
最近提交(Master分支:2 个月前 )
1997a400 - 2 年前
2f423539 - 2 年前
更多推荐
已为社区贡献9条内容
所有评论(0)