win下python3.x通过distribute安装模块

1,下载distribute-0.6.32.tar.gz ,网址为http://pypi.python.org/pypi/distribute#downloads

 
2,安装easy_install.py,把distribute-0.6.32.tar.gz 解压到python32/script/distribute-0.6.32中,然后执行
python script/distribute-0.6.32/setup.py install
 
 
 
3,通过easy_install.py安装扩展
python Lib/site-packages/distribute-0.6.32-py3.2.egg/easy_install.py redis
这样就可以安装了redis模块了。
 
 
 

你可能感兴趣的:(python)