I have a strange problem
I have a default numpy installation (Ubuntu). Programs that import numpy run without without any problem. However, lines such as "from numpy import XXX" are marked in PyDev with "Unresolved import XXX".
Other installed python libraries are recognized correctly.
How do I solve this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a strange problem
I have a default numpy installation (Ubuntu). Programs that import numpy run without without any problem. However, lines such as "from numpy import XXX" are marked in PyDev with "Unresolved import XXX".
Other installed python libraries are recognized correctly.
How do I solve this?
Add 'numpy' to your forced builtins: http://fabioz.com/pydev/manual_101_interpreter.html
Cheers,
Fabio