On Sat, Aug 4, 2012 at 7:23 PM, Ondřej Čertík <[email protected]> wrote: > Hi, > > Here is how I build docs: > > I first install sympy into my PYTHONPATH and then: > > cd docs > make html > > it works, but I am getting tons of errors of the same type: > > Traceback (most recent call last): > File > "/home/ondrej/repos/qsnake/local/lib/python2.6/site-packages/Sphinx-1.1-py2.6.egg/sphinx/ext/autodoc.py", > line 321, in import_object > __import__(self.modname) > File > "/home/ondrej/repos/qsnake/local/lib/python2.6/site-packages/sympy/__init__.py", > line 30, in <module> > from sympy.core import * > File > "/home/ondrej/repos/qsnake/local/lib/python2.6/site-packages/sympy/core/__init__.py", > line 6, in <module> > from basic import Basic, Atom, C, preorder_traversal > File > "/home/ondrej/repos/qsnake/local/lib/python2.6/site-packages/sympy/core/basic.py", > line 3, in <module> > from sympy.core.assumptions import ManagedProperties > ImportError: cannot import name ManagedProperties > > It might be that this (new?) code doesn't get properly installed in > setup.py. Or it's some other problem.
Ok, I forgot to: rm -rf /home/ondrej/repos/qsnake/local/lib/python2.6/site-packages/sympy/ before installing the latest sympy git. This is quite annoying about Python, that if you move some modules around and just install the new version it might break. Anyway, all works fine. Ondrej -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
