FS#7019 - python 2.5 segmentation fault
Attached to Project:
Arch Linux
Opened by Manifest0 (Manifest0) - Saturday, 28 April 2007, 03:13 GMT
Last edited by Jason Chu (jason) - Monday, 14 May 2007, 13:44 GMT
Opened by Manifest0 (Manifest0) - Saturday, 28 April 2007, 03:13 GMT
Last edited by Jason Chu (jason) - Monday, 14 May 2007, 13:44 GMT
|
Details
(04/28 04:15)
[demanuel@laptop:btuga-linuxmac]$ python Python 2.5.1 (r251:54863, Apr 19 2007, 11:03:39) [GCC 4.1.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> help() Welcome to Python 2.5! This is the online help utility. If this is your first time using Python, you should definitely check out the tutorial on the Internet at http://www.python.org/doc/tut/. Enter the name of any module, keyword, or topic to get help on writing Python programs and using Python modules. To quit this help utility and return to the interpreter, just type "quit". To get a list of available modules, keywords, or topics, type "modules", "keywords", or "topics". Each module also comes with a one-line summary of what it does; to list the modules whose summaries contain a given word such as "spam", type "modules spam". help> module spam no Python documentation found for 'module spam' help> modules spam Here is a list of matching modules. Enter any module name to get more help. Segmentation fault (04/28 04:15) [demanuel@laptop:btuga-linuxmac]$ pacman -Qs python ... local/python 2.5.1-1 A high-level scripting language ... Best regards Manifest0 |
This task depends upon
I'll try to write a script that imports every module on your system and shows you their names.
Trying to run a simple example as shown in http://matplotlib.sourceforge.net/tutorial.html
(05/13 04:38)
[demanuel@laptop:cevol01]$ python
Python 2.5.1 (r251:54863, Apr 19 2007, 11:03:39)
[GCC 4.1.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from pylab import *
>>> plot([1,2,3,4])
[<matplotlib.lines.Line2D instance at 0x86a9fac>]
>>> show()
Segmentation fault
Sorry for the long wait!
If you're using setuptools or something, make sure you have it installed into /usr/lib/python2.5 and not in /usr/lib/python2.4.
Thank You.