Installing wxPython_Phoenix on Mac OS X

Hello,

I am having issues installing wxPython_Phoenix, when I use the following command ‘pip install - U --pre -f https://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix’ the following error message shows up ‘Could not find a version that satisfies the requirement wxPython_Phoenix (from versions: ). No matching distribution found for wxPython_Phoenix.’

Any idea why that is ? I am running on python 3.6.1 Anaconda

Thank you!

Hi.
I had the same problem.

I’ve resolved it by downloading the whell “by hand”, and installing it with pip :

pip install Path/to/the/wheel/you/have/downloaded.whl

Regards

Xav’

···

On Wednesday, March 7, 2018 at 9:30:09 PM UTC+1, Jean-Yves Cambier wrote:

Hello,

I am having issues installing wxPython_Phoenix, when I use the following command ‘pip install - U --pre -f https://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix’ the following error message shows up ‘Could not find a version that satisfies the requirement wxPython_Phoenix (from versions: ). No matching distribution found for wxPython_Phoenix.’

Any idea why that is ? I am running on python 3.6.1 Anaconda

Thank you!

Hi,

sudo python3 -m pip install wxPython==4.0.1

works for me on every computer I installed it (OSX 10.8, 10.12 and 10.13).

Olivier

···

On Wed, Mar 7, 2018 at 4:11 PM, Xaviou x.psoud@gmail.com wrote:

Hi.
I had the same problem.

I’ve resolved it by downloading the whell “by hand”, and installing it with pip :

pip install Path/to/the/wheel/you/have/downloaded.whl

Regards

Xav’

On Wednesday, March 7, 2018 at 9:30:09 PM UTC+1, Jean-Yves Cambier wrote:

Hello,

I am having issues installing wxPython_Phoenix, when I use the following command ‘pip install - U --pre -f https://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix’ the following error message shows up ‘Could not find a version that satisfies the requirement wxPython_Phoenix (from versions: ). No matching distribution found for wxPython_Phoenix.’

Any idea why that is ? I am running on python 3.6.1 Anaconda

Thank you!

You received this message because you are subscribed to the Google Groups “wxPython-dev” group.

To unsubscribe from this group and stop receiving emails from it, send an email to wxPython-dev+unsubscribe@googlegroups.com.

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

You’re using the wrong package name, only the early pre-alpha builds used the wxPython_Phoenix name. It’s just wxPython now. It’s also available directly from PyPI, so there is no need to use the snapshot builds URL unless you need the bleeding edge for some reason.

···

On Wednesday, March 7, 2018 at 12:30:09 PM UTC-8, Jean-Yves Cambier wrote:

Hello,

I am having issues installing wxPython_Phoenix, when I use the following command ‘pip install - U --pre -f https://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix’ the following error message shows up ‘Could not find a version that satisfies the requirement wxPython_Phoenix (from versions: ). No matching distribution found for wxPython_Phoenix.’

Robin