How to check the current version of SymPy and upgrade to the latest version?
I am using macOS. The way I installed my current version is using pip install sympy
.
To check the current version of sympy:
In [6]: import sympy
In [7]: sympy.__version__
Out[7]: '0.7.6-git'
For stable release:
$ pip install --upgrade sympy
For latest features:
$ pip install --upgrade git+ssh://[email protected]/sympy/sympy.git