I am new to numpy. Hopefully this is a correct forum to post my question.

I have Ubuntu Luci system. I installed Python 2.6.5 and Python 3.0 as well
as python-numpy using Ubuntu repository.
When I import the numpy into python, I get the following error.

>> import numpy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named numpy

The package cannot be located.

Then I tried to point the interpreter to the numpy

>>> sys.path.append('/usr/lib/
python2.6/dist-packages')

and import it

>>> import numpy

I get the following error

>>> import numpy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.6/dist-packages/numpy/__init__.py", line 130, in
<module>
    import add_newdocs
  File "/usr/lib/python2.6/dist-packages/numpy/add_newdocs.py", line 9, in
<module>
    from lib import add_newdoc
  File "/usr/lib/python2.6/dist-packages/numpy/lib/__init__.py", line 4, in
<module>
    from type_check import *
  File "/usr/lib/python2.6/dist-packages/numpy/lib/type_check.py", line 8,
in <module>
    import numpy.core.numeric as _nx
  File "/usr/lib/python2.6/dist-packages/numpy/core/__init__.py", line 5, in
<module>
    import multiarray
ImportError: /usr/lib/python2.6/dist-packages/numpy/core/multiarray.so:
undefined symbol: _PyUnicodeUCS4_IsWhitespace
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to