windows平台python提示:
Missing dependencies for SOCKS support.
原因:使用了sock5,不支持。
解决:在CMD中输入 set http_proxy="" 以及 set https_proxy=""
然后安装pip install pysocks -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
windows永久更换源:
3.1 windows系统换源方法
直接在用户主目录中创建一个pip文件,eg: 进入C:\User\你的用户名, 新建一个文件夹pip ,然后在该文件夹中新建一个文件,名字为pip.ini,如下所示:
C:\Users\Administrator\pip\pip.ini
最后在该文件中写入下面内容:(这里用的是阿里巴巴的镜像源,也可以使用其它国内镜像源)
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
完成上述操作后,你再使用pip install命令安装某一个库时,系统就会自动在指的的镜像源中下载该库,而不需要再在命令行中加上镜像源的地址
例如,我们要使用阿里云的镜像源安装matplotlib,则可是使用如下命令:
pip install matplotlib
————————————————
更换源这一部分的操作的原文链接:https://blog.csdn.net/m0_56192771/article/details/124448249