Can't install Pheonix - wheel not supported?

Hi all,

Been trying to install Phoenix and am hitting a roadblock. I have WinPython 3.4 32bit, so I download the corresponding version:

pip3.4.exe install http://wxpython.org/Phoenix/snapshot-builds/wxPython_Phoenix-3.0.3.dev1814+ee5547a-cp34-none-win32.whl

``

But it comes back with this error:

wxPython_Phoenix-3.0.3.dev1814+ee5547a-cp34-none-win32.whl is not a supported wheel on this platform.

``

Whoops, hit post before I was done

Anyway, I tried a few other cp34 32 bit downloads, but none of them work. I’m downloading WinPython x64 now to see if I have better luck with that arch, but I’m still at a loss.

···

On Saturday, August 15, 2015 at 6:03:03 PM UTC-4, Ryan Holmes wrote:

Hi all,

Been trying to install Phoenix and am hitting a roadblock. I have WinPython 3.4 32bit, so I download the corresponding version:

pip3.4.exe install http://wxpython.org/Phoenix/snapshot-builds/wxPython_Phoenix-3.0.3.dev1814+ee5547a-cp34-none-win32.whl

``

But it comes back with this error:

wxPython_Phoenix-3.0.3.dev1814+ee5547a-cp34-none-win32.whl is not a supported wheel on this platform.

``

x64 doesn’t work, and neither does the method described here: http://wxpython.org/Phoenix/snapshot-builds/README.txt

···

On Saturday, August 15, 2015 at 6:03:03 PM UTC-4, Ryan Holmes wrote:

Hi all,

Been trying to install Phoenix and am hitting a roadblock. I have WinPython 3.4 32bit, so I download the corresponding version:

pip3.4.exe install http://wxpython.org/Phoenix/snapshot-builds/wxPython_Phoenix-3.0.3.dev1814+ee5547a-cp34-none-win32.whl

``

But it comes back with this error:

wxPython_Phoenix-3.0.3.dev1814+ee5547a-cp34-none-win32.whl is not a supported wheel on this platform.

``

I have python 2.7, which is the main one, and python 3.4, which I’ve renamed to python3.exe so that it’s different in the PATH. Using that command with python3 worked though, thank you very much!

···

On Saturday, August 15, 2015 at 6:03:03 PM UTC-4, Ryan Holmes wrote:

Hi all,

Been trying to install Phoenix and am hitting a roadblock. I have WinPython 3.4 32bit, so I download the corresponding version:

pip3.4.exe install http://wxpython.org/Phoenix/snapshot-builds/wxPython_Phoenix-3.0.3.dev1814+ee5547a-cp34-none-win32.whl

``

But it comes back with this error:

wxPython_Phoenix-3.0.3.dev1814+ee5547a-cp34-none-win32.whl is not a supported wheel on this platform.

``

Ryan,

Do you have a particular reason to specify a particular file, instead of just doing this:

Py2.7:
C:\python27\scripts\pip.exe install --upgrade --trusted-host wxpython.org --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix

Py3.4:
C:\python34\scripts\pip.exe install --upgrade --trusted-host wxpython.org --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix

Above will then select the most recent version.

Werner

Only because that didn’t work for me, it kept saying that there were no valid files found.

···

On Mon, Aug 17, 2015 at 11:30 AM, Werner wernerfbd@gmx.ch wrote:

Ryan,

Do you have a particular reason to specify a particular file, instead of just doing this:

Py2.7:

C:\python27\scripts\pip.exe install --upgrade --trusted-host wxpython.org --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix

Py3.4:

C:\python34\scripts\pip.exe install --upgrade --trusted-host wxpython.org --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix

Above will then select the most recent version.

Werner

You received this message because you are subscribed to a topic in the Google Groups “wxPython-users” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/wxpython-users/uySjMX0HDQE/unsubscribe.

To unsubscribe from this group and all its topics, send an email to wxpython-users+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Hi Ryan,

···

On 8/17/2015 19:18, Ryan Holmes wrote:

Only because that didn't work for me, it kept saying that there were no valid files found.

Do you still get that error? One can get it when a build is in process, i.e. not all wheels are generated.

Are you on current versions of pip and setuptools? See:
http://wiki.wxpython.org/How%20to%20install%20wxPython#Installing_wxPython-Phoenix_using_pip

Werner