Can Multiple Versions Be Installed?

I'm developing a couple of applications using wxPython-3.0.2.0.
Unfortunately, pgadmin3 will not build or run with this version; it wants
libwx_gtk2u_stc-2.8.so.0.

   Will wxPython-3.0.2.0 and wxPython-2.8.12.1 coexist on the same system?

TIA,

Rich

In short, Yes you can have multiple versions installed.

···

On Friday, June 12, 2015 at 1:14:40 PM UTC-4, fuzzydoc wrote:

I’m developing a couple of applications using wxPython-3.0.2.0.

Unfortunately, pgadmin3 will not build or run with this version; it wants

libwx_gtk2u_stc-2.8.so.0.

Will wxPython-3.0.2.0 and wxPython-2.8.12.1 coexist on the same system?

TIA,

Rich

Thanks, Mike. Short is good. :slight_smile:

   I suspected they could but wanted confirmation.

Carpe weekend,

Rich

···

On Fri, 12 Jun 2015, Mike Stover wrote:

In short, Yes you can have multiple versions installed.

In short, Yes you can have multiple versions installed.

  Thanks, Mike. Short is good. :slight_smile:

a bit longer -- depending on how it's all installed, you may need wxversion
to select the proper version:

import wxversion
wxversion.select('2.8')
import wx

(untested -- but something like that)

you need to do the select before you import wx.

-CHB

···

On Fri, Jun 12, 2015 at 11:01 AM, Rich Shepard <rshepard@appl-ecosys.com> wrote:

On Fri, 12 Jun 2015, Mike Stover wrote:

  I suspected they could but wanted confirmation.

Carpe weekend,

Rich

--

Christopher Barker, Ph.D.
Oceanographer

Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception

Chris.Barker@noaa.gov

Thanks, Chris. Now both pgadmin3 and my in-development app load. I'll make
sure the latter uses the desired version.

Carpe weekend,

Rich

···

On Fri, 12 Jun 2015, Chris Barker wrote:

a bit longer -- depending on how it's all installed, you may need
wxversion to select the proper version:

import wxversion
wxversion.select('2.8')
import wx

(untested -- but something like that)

you need to do the select before you import wx.