Archive for January, 2019
Upgrade pip Utility
You should always have the most current version of pip
installed when working with Python. You can upgrade the pip
utility with the following command:
sudo pip install --upgrade pip |
It should print the following to the console:
Collecting pip Downloading https://files.pythonhosted.org/packages/c2/d7/90f34cb0d83a6c5631cf71dfe64cc1054598c843a92b400e55675cc2ac37/pip-18.1-py2.py3-none-any.whl (1.3MB) 100% |████████████████████████████████| 1.3MB 971kB/s Installing collected packages: pip Found existing installation: pip 9.0.3 Uninstalling pip-9.0.3: Successfully uninstalled pip-9.0.3 Successfully installed pip-18.1 |