Twisted18.9在server2012中安装

公司前员工开发的系统,系统运行没有问题,但是现在需基于现有系统做新的开发,我必须再安装一套虚拟环境,以免开发时和现有系统状态有所冲突。

其他模块没有问题,安装Twisted18.9依赖无法安装,网上说从这个网站上下载相应版本即可 https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted 测试没有问题,不过程序没法跑,想来想去还是Twisted版本的问题。

使用pip install --download c:/  Twisted==18.9.0 下载 Twisted包  

解压 Twisted-18.9.0.tar.bz2  直接用 python setup.py install 安装

一看,缺了好多其他依赖,具体如下

Automat==0.7.0
PyHamcrest==1.9.0
attrs==19.1.0
constantly==15.1.0
hyperlink==19.0.0
idna==2.5
incremental==17.5.0
six==1.12.0
zope.interface==4.6.0

好嘛,没法,手动把他们都安装下,然后继续 python setup.py install  咦,那么顺。大功告成。

你可能感兴趣的:(python爬虫)