Hi Comer, On Sun, Aug 5, 2012 at 11:26 AM, Comer Duncan <[email protected]> wrote: > Hi, > > I have a few branches of sympy. Among them is Stefan Krastanov's branch. I > want to install (sudo python2.7 setup.py install) it so that when I run > ipython notebook --profile=sympy from anywhere it will use Stefan's. So far > I have tried checkout of his branch and find that his stuff is indeed there. > I have also tried the 'sudo python2.7 setup.py install' but it does not > provide what I want, branch-wise. I have downloaded ipython and built it
That's weird --- does it mean that some other version (branch) of SymPy is picked up instead? > using python2.7 (which comes from macports). The path to macports bin > directory is first in my PATH (am running bash). What do I need to do to > get the functionality with the desired sympy from Stefan's branch? I personally use Ubuntu, but the principle should be the same in Mac. How did you install ipython? Using "sudo python2.7 setup.py install"? If so, then you should do the same for SymPy. Maybe Aaron or others can comment. Ondrej P.S. I personally just use virtualenv, or install things into ~/usr using: python setup.py install --prefix=$HOME/usr and put "$HOME/usr/lib/python2.7/site-packages/" into my PYTHONPATH. I never use "sudo" for installing things. -- 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.
