Hi, I made a patch that allowed it to generate documentation and build, but it just gives the same errors when attempting to execute sage. For example:
-%<- $ sage ---------------------------------------------------------------------- | Sage Version 4.6.1, Release Date: 2011-01-11 | | Type notebook() for the GUI, and license() for information. | ---------------------------------------------------------------------- --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) /usr/lib/python2.7/site-packages/IPython/ipmaker.pyc in force_import(modname, force_reload) 61 reload(sys.modules[modname]) 62 else: ---> 63 __import__(modname) 64 65 /usr/share/sage/local/bin/ipy_profile_sage.py in <module>() 5 preparser(True) 6 ----> 7 import sage.all_cmdline 8 sage.all_cmdline._init_cmdline(globals()) 9 /usr/lib64/python2.7/site-packages/sage/all_cmdline.py in <module>() 12 try: 13 ---> 14 from sage.all import * 15 from sage.calculus.predefined import x 16 preparser(on=True) /usr/lib64/python2.7/site-packages/sage/all.py in <module>() 62 get_sigs() 63 ---> 64 from sage.misc.all import * # takes a while 65 66 from sage.misc.sh import sh /usr/lib64/python2.7/site-packages/sage/misc/all.py in <module>() 76 from func_persist import func_persist 77 ---> 78 from functional import (additive_order, 79 sqrt as numerical_sqrt, 80 arg, /usr/lib64/python2.7/site-packages/sage/misc/functional.py in <module>() 32 import sage.misc.latex 33 import sage.server.support ---> 34 import sage.interfaces.expect 35 import sage.interfaces.mathematica 36 /usr/lib64/python2.7/site-packages/sage/interfaces/expect.py in <module>() 54 55 from sage.structure.sage_object import SageObject ---> 56 from sage.structure.parent_base import ParentWithBase 57 import sage.structure.element 58 /usr/share/sage/local/bin/parent_base.pyx in init sage.structure.parent_base (sage/structure/parent_base.c:1945)() ----> 1 2 3 4 5 /usr/share/sage/local/bin/parent_old.pyx in init sage.structure.parent_old (sage/structure/parent_old.c:7067)() ----> 1 2 3 4 5 /usr/share/sage/local/bin/element.pxd in init sage.structure.parent (sage/structure/parent.c:19863)() 10 11 ---> 12 13 14 /usr/share/sage/local/bin/element.pyx in init sage.structure.element (sage/structure/element.c:26377)() 188 189 --> 190 191 192 AttributeError: 'module' object has no attribute 'is_extension_type' Error importing ipy_profile_sage - perhaps you should run %upgrade? WARNING: Loading of ipy_profile_sage failed. sage: 1+1 --------------------------------------------------------------------------- NameError Traceback (most recent call last) /usr/share/sage/local/bin/<ipython console> in <module>() NameError: name 'Integer' is not defined sage: -%<- sage 4.6 works correctly, and I also tried a build with cython 0.13 instead of 0.14, but same result. Any ideas of what may be wrong? Thanks, Paulo -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org