I have python located at two places in my OS(C:) drive.
One is at [Folder1] C:\Python38
Other is at [Folder2] C:\Users\User\AppData\Local\Programs\Python\Python38-32
Most of Folder1 and Folder2 are same, but when I run, say, pip install matplotlib
, it shows some requirements satisfied in Folder1, while the others in Folder2.
pip install matplotlibRequirement already satisfied: matplotlib in c:\python38\lib\site-packages (3.2.1)Requirement already satisfied: numpy>=1.11 in c:\python38\lib\site-packages (from matplotlib) (1.18.4)Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in c:\python38\lib\site-packages (from matplotlib) (2.4.7)Requirement already satisfied: cycler>=0.10 in c:\python38\lib\site-packages (from matplotlib) (0.10.0)Requirement already satisfied: kiwisolver>=1.0.1 in c:\python38\lib\site-packages (from matplotlib) (1.2.0)Requirement already satisfied: python-dateutil>=2.1 in c:\python38\lib\site-packages (from matplotlib) (2.8.1)Requirement already satisfied: six in c:\users\user\appdata\roaming\python\python38\site-packages (from cycler>=0.10->matplotlib) (1.14.0)
However, I want all that in one place, so as to be able to delete either Folder1 or Folder2 to free up space. How do i do that?