Page 1 of 1

Installing Pip for Python

Posted: Sun Mar 23, 2025 12:24 pm
by jussij
To install pip use the Zeus Tools, DOS Shell menu to open a command line prompt and run the following commands.

1. To start the pip installation run this command:

Code: Select all

python.exe -m ensurepip
2. Upgrade pip to the latest version using this command:

Code: Select all

python -m pip install --upgrade --force-reinstall --no-cache-dir pip
3. Check the pip installation by running this command:

Code: Select all

pip --version
That command should result in the following output:

Code: Select all

pip 25.0.1 from ... 
Jussi