当前位置 : 主页 > 编程语言 > python >

python3 requests.exceptions.InvalidSchema: Missing dependencies for SOCKS support

来源:互联网 收集:自由互联 发布时间:2022-06-15
使用场景python3 request 使用sock5/sck5h 代理 request报错requests.exceptions.InvalidSchema: Missing dependencies for SOCKS support.解决方案:pip3 install requests[socks] 或者 pip3 install pysocks安装的时候报系统错误

使用场景python3 request 使用sock5/sck5h 代理 request报错requests.exceptions.InvalidSchema: Missing dependencies for SOCKS support.解决方案:pip3 install requests[socks] 或者 pip3 install pysocks安装的时候报系统错误ERROR: Could not install packages due to an OSError: Missing dependencies for SOCKS support.这个指的时候需要注销你的系统代理再安装,你使用的是什么代理就unset什么代理unset socks proxyunset all_proxyunset ALL_PROXY执行完后再次安装

网友评论