Tal Avissar
Tal Avissar

Reputation: 10334

No module named 'scipy' in pycharm

I have installed scipy on windows with conda.

I'm using Python version 3.6.1

This is the error i recieve in pycharm that the scipy module is not found: enter image description here

I have also installed the wheel file with pip install and receives the following:

enter image description here

So if the scipy is installed correctly why is pycharm complaining?

Upvotes: 2

Views: 9487

Answers (2)

rinkert
rinkert

Reputation: 6863

You don't necessarily need to install scipy from within PyCharm, you can add the path of the scipy installation to the interpreter. Follow this tutorial.

Upvotes: 0

Dmytro Chekunov
Dmytro Chekunov

Reputation: 192

You need to install scipy package in PyCharm. Check out this link for official tutorial on how to do it.

Upvotes: 3

Related Questions