Reputation:
When I am trying to install wxpython in python 3.4.2 windows 64 bit. I am getting error as:
Command line :
C:\Users\praveen>pip install -U --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix
Error :
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
Upvotes: 1
Views: 3318
Reputation: 3177
EDIT: Actually there is now a working description on the wxPython wiki. The key is the --trusted-host
argument. For reference the full command is added:
pip install -U --trusted-host wxpython.org --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix
Tested on Python 2.7.10 32 bit with most current pip/setuptools (which is another key to success here).
Upvotes: 4