Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 514 Bytes

python.md

File metadata and controls

19 lines (10 loc) · 514 Bytes

Python

Install & Configuration

Bootstrapping the pip installer

This might be needed when pip install was skipped when installing Python (or when creating a virtual env) or after explicitly uninstalling pip.

  • Invoke CLI using -m switch:

python -m ensurepip

  • To upgrade the installed version of pip, pass the --upgrade option as:

python -m ensurepip --upgrade

Ref: Python.org/3/library/ensurepip

Back home