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
- Creating and Importing Modules
- The Python Standard Library
- Packages and __init__.py
- Installing Packages with pip