Newbie question:
The current version of Pythonista (1.5) comes with Sympy 0.7.4.1, but I need version 0.7.5.
I have downloaded the newest version of the module using the script installsympy at https://gist.github.com/henryiii/9011826 and I can see a sympy folder in Pythonista.
How can I import the newest version?
"import sympy" imports the builtin version, and renaming the folder to something like sympy2 and then importing it gives me conflict errors.
What is the right way to do this? absolute_import?
Thanks
Update:
If I try:
from . import sympy
I get:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ValueError: Attempted relative import in non-package