I installed python packages on Ubuntu Trusty using pip
and was able to call the installed packages as expected, but on Ubuntu Xenial (installed in a virtual machine) I did the same thing using pip
but could not use or see these packages until I installed these same packages via apt-get
util.
Now my question are:
- Does my running Xenial on a virtual machine change how
pip
works? - Or is there a change in Xenial on how
pip
works that I am should be aware of? - I was able to install packages on Trusty based on python2 or python3 and was to install using
pip
orpip3
, so how would this work when I useapt-get
to install or can I include version number when installing viaapt-get
.
0 Answers