Installing Phoenix

Hi,
I googled for this, and found the command:
pip install --upgrade --pre -f http://wxpython.org/Phoenix/snapshot-builds.

When I run this on Windows 8, 64 BIT, I get:
You must give at least one requirement to install (maybe you meant "pip install http://wxpython.org/Phoenix/snapshot-builds"?)

So I try pip install http://wxpython.org/Phoenix/snapshot-builds and get:
Collecting http://wxpython.org/Phoenix/snapshot-builds
   Downloading http://wxpython.org/Phoenix/snapshot-builds
      - 20kB 10.2MB/s
   Cannot unpack file C:\Users\Chris\AppData\Local\Temp\pip-aqgob9uk-unpack\snaps
hot-builds (downloaded from C:\Users\Chris\AppData\Local\Temp\pip-b9hkq2fx-build, content-type: text/html;charset=UTF-8); cannot detect archive format
Cannot determine archive format of C:\Users\Chris\AppData\Local\Temp\pip-b9hkq2fx-build

I headed to the page in the URL (wxpython.org/Phoenix/snapshot-builds), and it's a directory listings with about 60 files.

Is there an easier way to make Pip get the latest version of the wheel from that page? Or do I have to select it myself?

I'm using Python 3.4.3, and pip pip 7.1.0 from C:\Python34\lib\site-packages (python 3.4).

Thanks in advance.

should be:

pip install --upgrade --pre -f Index of /Phoenix/snapshot-builds wxPython_Phoenix

or with newer versions of pip you need to add the trusted-host:

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

Werner

···

On 7/15/2015 12:53, 'Chris Norman' via wxPython-users wrote:

Hi,
I googled for this, and found the command:
pip install --upgrade --pre -f Index of /Phoenix/snapshot-builds.

Hi

And how can I upgrade an already installed version? I’m using Ubuntu and python 2.7.

···

El 15/07/2015 05:59, “Werner” wernerfbd@gmx.ch escribió:

On 7/15/2015 12:53, ‘Chris Norman’ via wxPython-users wrote:

Hi,

I googled for this, and found the command:

pip install --upgrade --pre -f http://wxpython.org/Phoenix/snapshot-builds.
should be:

pip install --upgrade --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix

or with newer versions of pip you need to add the trusted-host:

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

Werner

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

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

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

The ‘-U’ or the ‘–upgrade’ tells pip to upgrade if there is already
an install. Now if you have a wxPython_Phoenix install which is
quit old then this might not work, e.g. before Robin added the
“devNNNN+aaaaaaa”. That is IIRC the build number and the last few
chars of the github commit id.
If that does not work then I would do an ‘uninstall’ and then an
‘install’.
Werner

···

Hi Maria,

  On 7/15/2015 13:54, Mario Lacunza wrote:

Hi

    And how can I upgrade an already installed version?

I’m using Ubuntu and python 2.7.

El 15/07/2015 05:59, “Werner” < >
escribió:

wernerfbd@gmx.ch

      On 7/15/2015

12:53, ‘Chris Norman’ via wxPython-users wrote:

Hi,

        I googled for this, and found the command:

        pip install --upgrade --pre -f [http://wxpython.org/Phoenix/snapshot-builds](http://wxpython.org/Phoenix/snapshot-builds).

should be:

      pip install --upgrade --pre -f [http://wxpython.org/Phoenix/snapshot-builds/](http://wxpython.org/Phoenix/snapshot-builds/)
      wxPython_Phoenix



      or with newer versions of pip you need to add the

trusted-host:

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

That's magic, worked perfectly thanks.

I'm not sure who runs the wiki side of things, but is it worth updating the docs there?

Cheers,

···

On 15/07/2015 11:59, Werner wrote:

On 7/15/2015 12:53, 'Chris Norman' via wxPython-users wrote:

Hi,
I googled for this, and found the command:
pip install --upgrade --pre -f Index of /Phoenix/snapshot-builds.

should be:

pip install --upgrade --pre -f Index of /Phoenix/snapshot-builds wxPython_Phoenix

or with newer versions of pip you need to add the trusted-host:

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

Werner

Hi,

···

On 7/15/2015 17:48, 'Chris Norman' via wxPython-users wrote:

That's magic, worked perfectly thanks.

I'm not sure who runs the wiki side of things, but is it worth updating the docs there?

Borrowed Robin's time machine:)

http://wiki.wxpython.org/How%20to%20install%20wxPython#Installing_wxPython-Phoenix_using_pip

But I will add the trusted-host thingy.

Werner

Hi,

Hi,

That's magic, worked perfectly thanks.

I'm not sure who runs the wiki side of things, but is it worth updating the docs there?

Borrowed Robin's time machine:)

How to install wxPython - wxPyWiki

But I will add the trusted-host thingy.

Also, might be a plan to put about verifying the installation:

Python3:
>>> import wx
>>> wx.version()
'3.0.3.dev1820+49a8884 msw (phoenix)'

HTH,

···

On 15/07/2015 16:54, Werner wrote:

On 7/15/2015 17:48, 'Chris Norman' via wxPython-users wrote:

Werner