I was trying to fix my problem with ReText (installed system-wide with pip3
).
Two of my 16.04 LTS systems have different output of pip3 list
.
I know that pip3 list
shows all packages (installed with both pip3
and apt
/apt-get
).
Also I know that
- APT installs stuff to
/usr/lib/python3/dist-packages
; pip3
installs system-wide stuff to/usr/local/lib/python3.5/dist-packages
.
How to determine which python modules were installed with pip
and which with apt
?
diff
? – wjandrea Sep 16 '18 at 22:09