14. Installing Packages — Lecture

Installing Packages

pip: Package Installer for Python

installing 3rd party libraries (packages) basically requires copying files into the Python installation (whichever directory you want)

Installing Packages with pip

<aside> 💡 pip install package_name

The requirements.txt File

Summary of Steps