python - Update/uninstall with Pip packages installed with apt (and vice versa) -
there number of resources compare , contrast advantages , disadvantages of using apt-get
, pip
install, update, , uninstall python packages.
what cannot find resource indicates happens if installed 1 package manager updated or uninstalled other.
when run pip list
, lists lot of packages installed, of on system installed apt-get
, not pip
.
so, these 2 package managers able manage packages installed other? or, pip
able manage package installed apt-get
, apt-get
messed afterwards. apt-get
able manage package installed pip
?
i recommend try , avoid using 2 (or more) package managers @ same time. it's not cooperate correctly , smoothly.
if possible, pick 1 of them , use it. combine them if need to. don't.
there ways of avoiding conflicts such as
pip install --user <package>
installs package user's directory only- virtualenv allows have packages installed per application/project - idea since various projects might need different versions of same package , it's easy move such project different computer etc.
- venv - python 3 has built-in support virtual environments
Comments
Post a Comment