Home > OS >  Install module in python locally
Install module in python locally

Time:10-22

I have a very basic question. I want to install a new module on my computer in order to use it in Python (via Spyder). When I install the package via pip everything seems to work fine. When I want to import the package in my script it says that there is no module by that name (see scrennshot below)

Any suggestions what might be the problem?

Thanks a lot :)

screenshot of this problem

CodePudding user response:

You're using pip3 to install.

Try installing using pip install nibabel.

CodePudding user response:

Thanks for asking the question. Have tried conda install Since we are in anaconda dev env.

  • Related