They use of pip to interact with the index (hosts the projects)
- Check for installation
- Install pip
- Update pip
There are two options for the command line input, depending on the version of the Python it is linked to, if at all.
pip --version
pip3 --version
If you get pip: command not found
for either, then pip is not installed. If you get a pip version #, then it is connected that respective Python version (either 3 or 2).
python -m pip install --upgrade pip
- Keep up to date