2010-06-18 4 views
2

IronPython 2.6, python 2.6.5, numpy, SciPyappel problème numpy IronPython

 
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 "", line 1, in 
    File "D:\Python26\Lib\site-packages\numpy\__init__.py", line 132, in 
    File "D:\Python26\Lib\site-packages\numpy\add_newdocs.py", line 9, in 
    File "D:\Python26\Lib\site-packages\numpy\lib\__init__.py", line 4, in 
    File "D:\Python26\Lib\site-packages\numpy\lib\type_check.py", line 8, in 
    File "D:\Python26\Lib\site-packages\numpy\core\__init__.py", line 5, in 
ImportError: No module named multiarray

Quel est le problème? Merci.

+3

Je crois que vous aurez besoin IronClad. http://code.google.com/p/ironclad/ – jcao219

+0

Je le savais, mais il y a aussi une erreur: http://code.google.com/p/ironclad/issues/detail?id=26 – Begtostudy

+0

Avez-vous exécuté ironclad avec -X: Frames? – jcao219

Répondre

0

D'après les commentaires, il semble que Giles' answer a fait l'affaire:

From looking at the IronPython source, it looks like you'll need to set LanguageSetup.Options["Frames"] = ScriptingRuntimeHelpers.True when you're setting up hosting.