Ironpython call numpy problem
Posted
by Begtostudy
on Stack Overflow
See other posts from Stack Overflow
or by Begtostudy
Published on 2010-06-18T13:07:25Z
Indexed on
2010/06/18
13:13 UTC
Read the original article
Hit count: 478
Ironpython 2.6, python 2.6.5, numpy, SciPy
import sys
sys.path.append(r'D:\Python26\dll')
sys.path.append(r'D:\Python26\Lib')
sys.path.append(r'D:\Python26\Lib\site-packages')
» import numpy
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "D:\Python26\Lib\site-packages\numpy\__init__.py", line 132, in <module>
File "D:\Python26\Lib\site-packages\numpy\add_newdocs.py", line 9, in <module>
File "D:\Python26\Lib\site-packages\numpy\lib\__init__.py", line 4, in <module>
File "D:\Python26\Lib\site-packages\numpy\lib\type_check.py", line 8, in <module>
File "D:\Python26\Lib\site-packages\numpy\core\__init__.py", line 5, in <module>
ImportError: No module named multiarray
What's wrong? Thanks.
© Stack Overflow or respective owner