URN Logo
UNIX Resources » Linux » Linux Forum » Gentoo Help » Page.1 » How to get wxpython to work?
announcement The content of this page is collected from Linux Forum, All copyrights and other associated rights are reserved by the original authors of the articles.
Resources
China Linux Forum(finished)
Linux Forum(finished)
FreeBSD China(finished)
linuxforum.com
  LinuxForum General Chat
  Linux Advocacy
  LinuxForum Polls
  Introductions
  Linux Kernel Support
  Patch Management
  Development Release
  Linux Programming
  Linux Security
  Linux Software
  Linux Hardware Problems
    Linux Video Problems
    Linux Sound Problems
  Linux Networking Support
  Linux Printing Support
  Linux Human Interface Devices Support
  Linux Data Storage Support
  Linux Applications Support
  Linux Installation Support
  Linux Laptops Support
  Linux Motherboard, Chipsets, CPU, Memory
  Miscellaneous
  Debian Linux Support
  Ubuntu Linux Support
  LiveCD Discussions
  Gentoo Linux Support
  Mandrake Linux Support
  Redhat / Fedora Linux Support
  Slackware Linux Support
  SuSE Linux Support
  CentOS Linux Support
  Linux Web Servers
  Linux DNS Servers
  Linux Database Servers
  Linux Email Servers
  Linux FTP Servers
  Linux Squid Proxy Server
  Linux Samba Help
  Linux cPanel Help
  Linux Ensim Help
  Linux Plesk Help
  Linux Webmin / Usermin Help
  Qmail Toaster Help
  Linux Games
  Windows Game Emulation
  Linux Discussions
  General Linux Discussions
  Red Hat Linux Discussions
  More Red Hat Linux Discussions
  Mandrake Linux Discussions
  Slackware Linux Discussions
  SuSE Linux Discussions
  Debian Discussions
  Samba Help
  Linux Security
  Linux Networking
  Gentoo Help
  Operating System Rant Forum
  Hardware Rants
   
How to get wxpython to work?
Subject: How to get wxpython to work?
Author: Grant Edwards    Posted: 2006-01-25 20:29:33    Length: 1,862 byte(s)
[Original] [Print] [Top]
So far today, I'm only batting less than .500 with the packages
I've tried to emerge.  :(

The stable verions of gnome-python-extras never did build, and
I couldn't get the ebuild of cvsweb to work either (it
installed fine by hand from a current source tarball).

However, the most recent failure is wxpython.  I just emerged
it, and it seemed to build fine, but it won't run.  If anybody
could lend me a clue, I'd appreciate it....


Python 2.4.2 (#1, Jan 24 2006, 22:52:33)
[GCC 3.4.4 (Gentoo 3.4.4-r1, ssp-3.4.4-1.0, pie-8.7.8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
QUOTE
import wx
Traceback (most recent call last):

  File "[stdin]", line 1, in ?
  File "/usr/lib/python2.4/site-packages/wx-2.6-gtk2-ansi/wx/__init__.py", line 42, in ?
    from wx._core import *
  File "/usr/lib/python2.4/site-packages/wx-2.6-gtk2-ansi/wx/_core.py", line 4, in ?
    import _core_
ImportError: /usr/lib/libwx_gtk2_core-2.6.so.0: undefined symbol: pango_x_get_context


--
Grant Edwards                   grante             Yow!  Sorry, wrong ZIP
                                  at               CODE!!
                               visi.com

[Original] [Print] [Top]
Subject: How to get wxpython to work?
Author: Grant Edwards    Posted: 2006-01-25 21:14:29    Length: 1,759 byte(s)
[Original] [Print] [Top]
On 2006-01-26, Grant Edwards [grante@visi.com] wrote:

QUOTE
However, the most recent failure is wxpython.  I just emerged
it, and it seemed to build fine, but it won't run.  If anybody
could lend me a clue, I'd appreciate it....


Python 2.4.2 (#1, Jan 24 2006, 22:52:33)
[GCC 3.4.4 (Gentoo 3.4.4-r1, ssp-3.4.4-1.0, pie-8.7.8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import wx
Traceback (most recent call last):
File "[stdin]", line 1, in ?
File "/usr/lib/python2.4/site-packages/wx-2.6-gtk2-ansi/wx/__init__.py", line 42, in ?
from wx._core import *
File "/usr/lib/python2.4/site-packages/wx-2.6-gtk2-ansi/wx/_core.py", line 4, in ?
import _core_
ImportError: /usr/lib/libwx_gtk2_core-2.6.so.0: undefined symbol: pango_x_get_context

I unmerged pango, wxGTK, and wxpython.  After re-emerging them,
same error.

How do you avoid this constant battle with library
compatibility issues???

--
Grant Edwards                   grante             Yow!  Now I can join WEIGHT
                                  at               WATCHERS!
                               visi.com

[Original] [Print] [Top]
Subject: How to get wxpython to work?
Author: Tobias Hommel    Posted: 2006-01-27 04:45:35    Length: 1,801 byte(s)
[Original] [Print] [Top]
On Thu, 26 Jan 2006 01:29:33 -0000
Grant Edwards [grante@visi.com] wrote:

QUOTE
So far today, I'm only batting less than .500 with the packages
I've tried to emerge.  :(

The stable verions of gnome-python-extras never did build, and
I couldn't get the ebuild of cvsweb to work either (it
installed fine by hand from a current source tarball).

However, the most recent failure is wxpython.  I just emerged
it, and it seemed to build fine, but it won't run.  If anybody
could lend me a clue, I'd appreciate it....


Python 2.4.2 (#1, Jan 24 2006, 22:52:33)
[GCC 3.4.4 (Gentoo 3.4.4-r1, ssp-3.4.4-1.0, pie-8.7.8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import wx
Traceback (most recent call last):
File "[stdin]", line 1, in ?
File
"/usr/lib/python2.4/site-packages/wx-2.6-gtk2-ansi/wx/__init__.py",
line 42, in ? from wx._core import * File
"/usr/lib/python2.4/site-packages/wx-2.6-gtk2-ansi/wx/_core.py", line
4, in ? import _core_ ImportError: /usr/lib/libwx_gtk2_core-2.6.so.0:
undefined symbol: pango_x_get_context


which version of wxGTK have you installed? i had similar problems. try

editing /etc/portage/package.keywords and add the following line:
x11-libs/wxGTK ~x86

or ACCEPT_KEYWORDS=~x86 emerge wxGTK


then emerge wxGTK and maybe re-emerge the packages that don't work



--
illiteratum plausum non desidero

[Original] [Print] [Top]
Subject: How to get wxpython to work?
Author: Grant Edwards    Posted: 2006-01-27 11:05:35    Length: 1,491 byte(s)
[Original] [Print] [Top]
On 2006-01-27, Tobias Hommel [news@infernal-heaven.org] wrote:

QUOTE
which version of wxGTK have you installed?

I was using the current stable versions of wxGTK and pango.

QUOTE
i had similar problems. try
editing /etc/portage/package.keywords and add the following line:
x11-libs/wxGTK ~x86

or ACCEPT_KEYWORDS=3D~x86 emerge wxGTK


then emerge wxGTK and maybe re-emerge the packages that don't work

I masked the current versions and went back to versions of
pango, GTK, wxGTK, and Gnome from a few weeks ago.  Everything
works fine now.

--
Grant Edwards                   grante             Yow!  Yow! Am I in
                                  at               Milwaukee?
                               visi.com

[Original] [Print] [Top]
Subject: How to get wxpython to work?
Author: Grant Edwards    Posted: 2006-01-27 11:12:04    Length: 1,122 byte(s)
[Original] [Print] [Top]
On 2006-01-27, Grant Edwards [grante@visi.com] wrote:

QUOTE
I masked the current versions and went back to versions of
pango, GTK, wxGTK, and Gnome from a few weeks ago.  Everything
works fine now.

Of course the nagging question now is how will I know when it's
safe to unask things and update to the "stable" versions.

--
Grant Edwards                   grante             Yow!  Do you think the
                                  at               "Monkees" should get gas on
                               visi.com            odd or even days?

[Original] [Print] [Top]
« Previous thread
How to install a working gentoo?
Gentoo Help
Page. 1
Next thread »
ebuild gnome-python-extras fails.
     

Copyright © 2007 UNIX Resources Network, All Rights Reserved.      About URN | Privacy & Legal | Help | Contact us
Powered by FreeBSD    webmaster: webmaster@unixresources.net
This page created on 2007-08-01 13:17:59, cost 0.027221202850342 ms.