python InvalidSchema(“Missing dependencies for SOCKS support.“)

文章目录

mark 一下

1. 问题

使用 pip install 的时候, 出现一大堆error,主要报错信息:

raise InvalidSchema(“Missing dependencies for SOCKS support.”)

2. 解决

终端中输入:

unset all_proxy
unset ALL_PROXY
pip install pysocks
source ~/.bashrc

pip install 就 ok 了

猜你喜欢

转载自blog.csdn.net/qq_35632833/article/details/118448285