I have Sympy installed with Anaconda, my version (of Sympy) is 0.7.6 .
I want to be able to use the git version of Sympy. Do you know how can I tell to Anaconda to substitute the 2 versions ?
I've tried using the git clone command, but the Sympy folder from git and Anaconda doesn't look the same at all, so I can't replace one with another.
git clone git://github.com/sympy/sympy.git
Is there a command like : "conda update-git sympy" ?
I found that answer, but I didn't understand how to do it.
Possible to do "conda build" from github branch?
UPDATE: I've used the following command and it worked
python setup.py develop
in my sympy directory.
Thanks to @asmeurer