下载gevent,greenlet的.whl文件
首先在这里找到对应操作系统的gevent文件,我这里选择的是gevent1.0.2cp27nonewin32.whl
这个版本。
安装pip
-
先下载
get-pip.py
这个文件,下载地址是https://raw.github.com/pypa/pip/master/contrib/get-pip.py,直接另存为即可。放到Python的根目录下,一般是C:\Python27\
这个目录下。 -
然后在命令行下进入到这个目录,运行
python get-pip.py
等待安装pip。 -
安装完毕后,将python的Scripts目录加入系统的环境变量。
安装gevent
在cmd窗口,找到此前下载的gevnet.whl路径。执行pip install gevent1.0.2cp27nonewin32.whl
即可。
本文转自 Mr_sheng 51CTO博客,原文链接:http://blog.51cto.com/sf1314/1967879