tiberhockey
tiberhockey

Reputation: 576

ModuleNotFoundError: No module name 'Cython'

I am trying to install pandas module on PyCharm. When i try to install it it gave me this error: "ModuleNotFoundError: No module name 'Cython' " (Screen: https://prnt.sc/qafwcy)

So i went on the CMD to try to install the Cython package with this command: py -m pip install Cython , which gave me an other error: "The script, f2py.exe is install in 'C:\xxx.xxxx, which is not a PATH. (Screen: https://prnt.sc/qafvx3)

Does anyone had the same problem and know how to fix it? Thank you

enter image description here

enter image description here

Upvotes: 1

Views: 833

Answers (1)

Unfitacorn
Unfitacorn

Reputation: 316

Pycharm uses a virtual environment - one separate from your python install on your computer. This is to isolate your development environment from the one you would use on your computer.

Enter your pip commands here instead:

pycharm terminal

Upvotes: 1

Related Questions