Learn how to use pip to install a Python package on Windows. This quick no-talking tutorial shows how to open Windows Terminal, check that pip is available, and install a package using the py -m pip command.
This is useful for Python beginners who need to install external libraries and add new functionality to their Python projects.
Steps:
1. Open Windows Terminal
2. Check pip with py -m pip --version
3. Run py -m pip install requests
4. Wait for the installation to finish
5. Confirm that the package was installed successfully
Example command:
py -m pip install requests
You can replace requests with the name of another Python package you want to install.
No talking, no long intro — just a quick step-by-step Python tutorial for Windows.