"no Suitable Image Found" Error When Using Numpy
I tried to use NumPy in Terminal, but the system gave me an error message like this: Traceback (most recent call last): File '', line 1, in File '/Library/Frameworks/Pyth
Solution 1:
Your installation of NumPy is borked somehow: it detects that some of its core libraries (eg, multiarray.so
) were compiled with a different version of the compiler or for a different architecture.
If you installed NumPy before updating your Python to 2.7.3, you have to reinstall it. You could find precompiled binaries, but as you've modified the original Python, they may not work for you.
At the same time, compiling NumPy on Mac OS X isn't particularly difficult. There are some environment variables to set beforehand, but otherwise, it's a straightforward process. This link should give you precious information.
Post a Comment for ""no Suitable Image Found" Error When Using Numpy"