在 python 3.4.2 windows 64 位中安装 wxpython

Install wxpython in python 3.4.2 windows 64 bit

当我尝试在 python 3.4.2 windows 64 位中安装 wxpython 时。我得到的错误是:

命令行:

C:\Users\praveen>pip install -U --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix

错误:

Collecting wxPython-Phoenix
The repository located at wxpython.org is not a trusted or secure host and is being ignored. If this repository is available via HTTPS it is recommended to use HTTPS instead, otherwise you may silence this warning and allow it anyways with '--trusted-host wxpython.org'.
Could not find a version that satisfies the requirement wxPython-Phoenix (from versions: )
No matching distribution found for wxPython-Phoenix

编辑:实际上现在有一个 working description on the wxPython wiki。关键是 --trusted-host 参数。添加完整命令供参考:

pip install -U --trusted-host wxpython.org --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix

在 Python 2.7.10 32 位上测试最新 pip/setuptools(这是这里成功的另一个关键)。