I cant install libraries?

41 Views Asked by At

I wanted to install scipy through pip and it outputted this:

Requirement already satisfied: scipy in c:\users\ejrgo\scoop\apps\python\current\lib\site-packages (1.12.0)
Requirement already satisfied: numpy<1.29.0,>=1.22.4 in c:\users\ejrgo\scoop\apps\python\current\lib\site-packages (from scipy) (1.26.4)

I haven't tried to install it before, but i did try to install manim the other day, which looked like it worked but VScode gave me an error when i ran some code from it. When i was trying to install manim it lloked like it installed scipy along with it so that may be messing things up abit. but if anyone could help me get manim aswell that would be really helpful too.

1

There are 1 best solutions below

7
Mr. Irrelevant On

The Output "Requirement already satisfied" implies that the desired package is already installed.

try:

pip list

to list all installed packages. Check if scipy is listed there.