Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImportError: No module named 'Cython' [duplicate]

I'm trying do from Cython.Build import cythonize and I get the message ImportError: No module named 'Cython', but I instaled the Cython with the comand pip install Cython. What's wrong?

Python 3.5 Cython 0.25.2 Windows 8

like image 336
Tais Avatar asked May 15 '17 14:05

Tais


2 Answers

just directly install from pypi: pip install Cython
https://pypi.org/project/Cython/

like image 192
Xiaoyu Xu Avatar answered Sep 25 '22 17:09

Xiaoyu Xu


Use Pip3 command:

pip3 install --upgrade cython 
like image 26
baraa yusri Avatar answered Sep 23 '22 17:09

baraa yusri