Python程序教程

您现在的位置是:首页 >  Python

当前栏目

python部分依赖踩坑

python,部分,依赖
2025-03-18 08:48:48 时间

今天运行脚本时警告:

DependencyWarning: SOCKS support in urllib3 requires the installation of optional dependencies: specifically, PySocks.

For more information, see https://urllib3.readthedocs.io/en/latest/contrib.html#socks-proxies

我的python版本为2.7.17

于是安装对应的模块

pip install win-inet-pton

发现还有一个警告:

CryptographyDeprecationWarningPython 2 is no longer supported by the Python core team

于是我先卸载

pip uninstall cryptography

然后安装适配的版本

pip install cryptography==2.6

再次运行即可