April 2017
Intermediate to advanced
320 pages
7h 46m
English
The pip or pip3 package manager usually comes with Ubuntu. Check that pip or pip3 is installed using the following command:
$ pip -V Expected output: pip 9.0.1 from /usr/local/lib/python2.7/dist-packages/pip-9.0.1-py2.7.egg (python 2.7)
For Python 3.3+ use the following:
$ pip3 -V
The expected output is as follows:
pip 1.5.4 from /usr/lib/python3/dist-packages (python 3.4)
It is to be noted that pip version 8.1+ or pip3 version 1.5+ are strongly recommended for better results and smooth computation. If version 8.1+ for pip and 1.5+ for pip3 are not installed, either install or upgrade to the latest pip version:
$ sudo apt-get install python-pip python-dev
For Python 3.3+, use the ...
Read now
Unlock full access