How to install 'pip' on Ubuntu 16.04
1. First, check the pip version.
$ pip --version
2. If pip is not installed, install pip with the following command:
$ sudo apt-get install python-pip
3. Finally, check the installed version of pip.
$ pip --version
Comments
Post a Comment