Reputation: 8827
If I uninstall pip with
pip uninstall pip
does it remove all installed packages too?
Upvotes: 2
Views: 389
Reputation: 527053
No. pip
is a tool that handles downloading packages and installing them to various locations; those locations are not part of pip
's own install directories. As such, removing pip
has no effect on installed packages.
(Common paths for installing packages include /usr/lib/<pythonversion>
or /usr/local/lib/<pythonversion>
.)
Upvotes: 3