I am trying to import scipy.optimize using Python 3.3.1 in Windows 8. I am using scipy-0.12.0. When I try to import, Python returns the following error:
>>> import scipy.optimize Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Python33\lib\site-packages\scipy\optimize\__init__.py", line 146, in <module> from .optimize import * File "C:\Python33\lib\site-packages\scipy\optimize\optimize.py", line 34, in < module> from .linesearch import \ File "C:\Python33\lib\site-packages\scipy\optimize\linesearch.py", line 16, in <module> from scipy.optimize import minpack2 ImportError: DLL load failed: The specified module could not be found.
I believe this is an operating system error because importing scipy.optimize succeeds when using the same version of Python and scipy on a computer running Windows 7.
I would be grateful for any help.
Thanks.
python windows scipy
user2619930
source share