I noticed the issue when I wrote pip list
in the global Python environment and found all the packages downloaded while I was using Conda with pip install
.
So, I tried running pip --version
both in the global Python environment and in Conda, and I get the same result, which is pip 23.3.1 from C:Usersgiovaanaconda3Libsite-packagespip (python 3.11)
, so I guess they are both using the same pip.
Additionally, when I run where pip
, I get the following output: C:Usersgiovaanaconda3Scriptspip.exe C:UsersgiovaAppDataLocalMicrosoftWindowsAppspip.exe
. How can I resolve this discrepancy and ensure that the correct pip version is displayed from the global Python environment and that if I dowload a package within the conda environment it is isolated to that environment?