0Pricing
Python Academy · Lesson

Installing Packages with pip

Use pip to install, upgrade, and uninstall third-party packages.

Introduction

pip is Python's package installer. It downloads packages from PyPI and manages your project's dependencies.

pip install

pip install requests installs the requests package from PyPI into your current environment.
# Terminal:
# pip install requests
print('install demo')

All lessons in this course

  1. Creating and Importing Modules
  2. The Python Standard Library
  3. Packages and __init__.py
  4. Installing Packages with pip
← Back to Python Academy