Reputation: 11
Just started using docker. I want to install numphy, scipy etc from bash i.e PS H:> docker run -it python:3.4 bash then ....:/# install requests ....:/# pip install numphy
I'd expect this to work but for some reason I get the error:
Could not find a version that satisfies the requirement numphy (from versions: ) No matching distribution found for numphy
Not really sure what to do from here - any help would be most appreciated.
Upvotes: 0
Views: 124
Reputation: 3662
Are you trying to install numpy
? You need to use:
pip install numpy
Not:
pip install numphy
That package (numphy
) isn't found because it doesn't exist. You either misspelled it as noted or you don't have the files (if it's a package you'r developing locally) inside the container to install it.
Upvotes: 1