I need 3.2.1 in order to use gmpy2 (see http://code.google.com/p/gmpy/)
I downloaded http://mpmath.googlecode.com/files/mpmath-0.17.zip and
installed in Python 3.1.3 last February. I now have Python 3.2.1 and
tried the same installation, but get
>>> import mpmath
Traceback (most recent call last):
File "C:\Program Files (x86)\Wing IDE
4.0\src\debug\tserver\_sandbox.py", line 1, in <module>
# Used internally for debug sandbox under external interpreter
File "c:\Python32\Lib\site-packages\mpmath\__init__.py", line 5, in <module>
from .ctx_fp import FPContext
File "c:\Python32\Lib\site-packages\mpmath\ctx_fp.py", line 1, in <module>
from .ctx_base import StandardBaseContext
File "c:\Python32\Lib\site-packages\mpmath\ctx_base.py", line 3, in <module>
from .libmp.backend import xrange
File "c:\Python32\Lib\site-packages\mpmath\libmp\__init__.py", line
1, in <module>
from .libmpf import (prec_to_dps, dps_to_prec, repr_dps,
File "c:\Python32\Lib\site-packages\mpmath\libmp\libmpf.py", line
20, in <module>
from .libintmath import (giant_steps,
File "c:\Python32\Lib\site-packages\mpmath\libmp\libintmath.py",
line 302, in <module>
sqrtrem = gmpy.sqrtrem
builtins.AttributeError: 'module' object has no attribute 'sqrtrem'
What to do?
Thanks,
Dick Moores
Yes! That did it. Thanks very much.
Dick Moores