Running cimport cython
or cimport numpy
in the Python interpreter results in the following error:
cimport cython
File "<interactive input>", line 1
cimport cython
^
SyntaxError: invalid syntax
Is it environment variables path problem? Or is it not supposed to be run in the interpreter? Please, help. I spent several days trying to get rid of the error.
(By the way, I do not get an error when compiling .pyx files that use cimport numpy
...)
Thank you!
Oleg