56

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

DankMasterDan
  • 1,565
  • 1
  • 19
  • 32
Tais
  • 789
  • 1
  • 5
  • 12

7 Answers7

55

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

Xiaoyu Xu
  • 690
  • 5
  • 5
30

Use Pip3 command:

pip3 install --upgrade cython
DavidW
  • 27,094
  • 6
  • 52
  • 73
baraa yusri
  • 319
  • 3
  • 7
  • I've undone an edit that changed `pip3` -> `pip` since it seems to change the point of this answer. The useful bit of the edit was to suggest (that on some shells) `alias pip=pip3` (for those that want to only type `pip`). – DavidW Jan 28 '21 at 15:48
8

I reinstalled the Cython with conda and install the Microsoft Visual C++ Build Tools and it works fine.

Jeru Luke
  • 16,909
  • 11
  • 66
  • 79
Tais
  • 789
  • 1
  • 5
  • 12
5

You can download the the newest Cython release from http://cython.org/ or you can directly download by clicking this link here Unpack the tarball or zip file, enter the directory, and then run:

python setup.py install
JohannesB
  • 1,865
  • 21
  • 33
Pranav balu
  • 116
  • 1
  • 4
3

The problem for me was the pip version. Running python -m pip install pip --upgrade solved the issue.

Charalamm
  • 980
  • 8
  • 22
1

it should be path problem. go to windows search for python idle right click idle - open file location where right click on python.exe - open file location if the module not in that location type cmd and press enter in path now install module with pip install cython it will work fine

1

I personally ran into this problem when I was trying to set up a new virtual environment. I simply installed Cython with python -m pip install Cython and then proceeded to install all the rest of my stuff I needed with python -m pip install -r requirements.txt. Once it was done, it actually uninstalled Cython for me... Why? Heck do I know... I ain't that kind of expert :<

W1ck3d
  • 131
  • 9