ImportError: No module named 'Cython'
问题 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 回答1: just directly install from pypi: pip install Cython https://pypi.org/project/Cython/ 回答2: Use Pip3 command: pip3 install --upgrade cython 回答3: I reinstalled the Cython with conda and install the Microsoft Visual C++ Build Tools and it works fine. 回答4: You can download