windows10+vs2015+python35安装 pyuv
jopen
9年前
1、 git clone https://github.com/saghul/pyuv
2、安装过程中会下载libuv的源码和gpy的源码,需要访问google的服务器。设置git代理。
香港代理
http://49.1.244.139:3128
https://183.111.169.209:3128
先ping一下以上ip地址,看是否任然有效。
然后,
git config --global http.proxy http://49.1.244.139:3128
git config --global https.proxy https://183.111.169.209:3128
3、安装
注意,pyuv可支持python3.5,但是编译libuv的脚本要求使用用python2.7,于是修改setup_libuv.py
line 66 -- env.pop('VS140COMNTOOLS', None)
line 66 ++ #env.pop('VS140COMNTOOLS', None)
命令行:
set PYTHON=python3.5 location
python35 setup.py build_ext --inplace
耐心等待编译完成
然后执行安装:
python35 setup.py install
4、恢复git的代理设置git config --global --unset http.proxy
git config --global --unset https.proxy