From: Chris L. <chr...@sp...> - 2009-12-08 22:16:34
|
Ubuntu 9.10 package fails thus:- chris@dellap:~$ python Python 2.6.4 (r264:75706, Nov 2 2009, 14:38:03) [GCC 4.4.1] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import visual Segmentation fault chris@dellap:~$ uname -a Linux dellap 2.6.31-9-rt #152-Ubuntu SMP PREEMPT RT Thu Oct 15 05:01:14 UTC 2009 i686 GNU/Linux chris@dellap:~$ Is my graphics card (NVIDIA GeForce4 Ti4200 finally getting beyond the pail? I've tried loading the NVidia drivers but that trashed the debian install so I'm a little concerned about trying to update them. Chris |
From: Bruce S. <Bru...@nc...> - 2009-12-08 22:24:03
|
I wouldn't think that this is a graphics card program, because no graphics are involved in simply importing visual, before actually creating an object (and window). I haven't upgraded to 9.10 yet, so I'll ask: When you say "package" do you mean that you used a python-visual package supplied with Ubuntu, rather than compiling from source? Bruce Sherwood Chris Lyon wrote: > Ubuntu 9.10 package fails thus:- > > chris@dellap:~$ python > Python 2.6.4 (r264:75706, Nov 2 2009, 14:38:03) > [GCC 4.4.1] on linux2 > Type "help", "copyright", "credits" or "license" for more information. > >>> import visual > Segmentation fault > > > chris@dellap:~$ uname -a > Linux dellap 2.6.31-9-rt #152-Ubuntu SMP PREEMPT RT Thu Oct 15 05:01:14 > UTC 2009 i686 GNU/Linux > chris@dellap:~$ > > > Is my graphics card (NVIDIA GeForce4 Ti4200 finally getting beyond the > pail? I've tried loading the NVidia drivers but that trashed the debian > install so I'm a little concerned about trying to update them. > > > Chris |
From: Andrew M. <amo...@de...> - 2009-12-09 03:12:23
|
According to this: https://bugs.launchpad.net/python/+bug/457688/comments/14 I found that I had to install libgtkglextmm-x11-1.2-dev and this packages dependencies to get around the segfault. Not sure why I need a dev package, but I have room on my harddrive, so it's no big thing. luck! On Tue, Dec 8, 2009 at 3:07 PM, Chris Lyon <chr...@sp...> wrote: > Ubuntu 9.10 package fails thus:- > > chris@dellap:~$ python > Python 2.6.4 (r264:75706, Nov 2 2009, 14:38:03) > [GCC 4.4.1] on linux2 > Type "help", "copyright", "credits" or "license" for more information. > >>> import visual > Segmentation fault > > > chris@dellap:~$ uname -a > Linux dellap 2.6.31-9-rt #152-Ubuntu SMP PREEMPT RT Thu Oct 15 05:01:14 > UTC 2009 i686 GNU/Linux > chris@dellap:~$ > > > Is my graphics card (NVIDIA GeForce4 Ti4200 finally getting beyond the > pail? I've tried loading the NVidia drivers but that trashed the debian > install so I'm a little concerned about trying to update them. > > > Chris > > > > ------------------------------------------------------------------------------ > Return on Information: > Google Enterprise Search pays you back > Get the facts. > http://p.sf.net/sfu/google-dev2dev > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Guy K. K. <g....@ma...> - 2009-12-09 04:06:24
|
Hi Andrew, (and Chris) I was recently told by some Ubuntu developers/contributors that in order to get something done on this you'll *have to* file a bug report. Otherwise they *cannot* manage what's going on, and they don't have the time or overview to graze on all mailing lists/forums/etc. On Wed, 09 Dec 2009 16:12:10 Andrew Morrison wrote: > According to this: > > https://bugs.launchpad.net/python/+bug/457688/comments/14 > > I found that I had to install libgtkglextmm-x11-1.2-dev and this > packages dependencies to get around the segfault. Not sure why I need > a dev package, but I have room on my harddrive, so it's no big thing. The bug in question that you'll want to address is this one: https://bugs.launchpad.net/ubuntu/+source/python-visual/+bug/482928 What I'd like to ask you (both) now is to go there and submit a comment confirming this bug. Also you should click in the "Status" column on the top of the page onto "New" and select "Confirmed". This will create a higher visibility for the Ubuntu folks, and they may be more inclined to do something about it. The way they work is that they (have to) filter priorities on what they're working on, and whatever touches more people, and has been confirmed by a higher number of users, will likely get more resources. HTH, Guy -- Guy K. Kloss Institute of Information and Mathematical Sciences Te Kura Pūtaiao o Mōhiohio me Pāngarau Massey University, Albany (North Shore City, Auckland) 473 State Highway 17, Gate 1, Mailroom, Quad B Building voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 G....@ma... http://www.massey.ac.nz/~gkloss |
From: Andrew M. <amo...@de...> - 2009-12-11 15:10:41
|
On Tue, Dec 8, 2009 at 10:06 PM, Guy K. Kloss <g....@ma...> wrote: > The bug in question that you'll want to address is this one: > > https://bugs.launchpad.net/ubuntu/+source/python-visual/+bug/482928 > > What I'd like to ask you (both) now is to go there and submit a comment > confirming this bug. Also you should click in the "Status" column on the top > of the page onto "New" and select "Confirmed". This will create a higher > visibility for the Ubuntu folks, and they may be more inclined to do something > about it. Guy, Thanks for the pointer to that bug. I had not seen it. I updated the status to Confirmed and posted a comment. Hope that helps. I had assumed the bug was not something Ubuntu devs would necessarily address, which is why I hadn't bothered to search for a bug report. Andrew |