python的Twisted依赖库的安装方法和问题解决方式

在安装Twisted依赖库的时候遇到一些问题,为大家分享一下。

版本:python 3.6
系统:Windows 10

一般我们安装时用pip install twisted

遇到以下错误:
python的Twisted依赖库的安装方法和问题解决方式_第1张图片
根据错误提示,没有visual c++ 14.0 ,其实就是缺少Visual C++ 2015 Build Tools。

提供两种解决方法
解决方法1:
打开链接下载安装程序: Microsoft Visual C++ Build Tools 2015
,双击visualcppbuildtools_full.exe,都选择默认即可,点击安装。
python的Twisted依赖库的安装方法和问题解决方式_第2张图片

解决方法2:

去下面这个地址下载whl包,通过使用pip 安装,选择符合自己python版本的whl包。
https://www.lfd.uci.edu/~gohlke/pythonlibs/

python的Twisted依赖库的安装方法和问题解决方式_第3张图片

下载whl的安装方法:
和其他的pip方法使用方式相同,不过需要带上whl包的路径位置。
pip install 路径/Twisted‑18.9.0‑cp36‑cp36m‑win_amd64.whl

你可能感兴趣的:(python数据获取)