Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 501 Bytes

install-python-dependencies.md

File metadata and controls

27 lines (17 loc) · 501 Bytes

How to install Python dependencies

Overview

Instructions for installing Python3 dependencies.

Install single package

  1. ✏️ Install single package. Example:

    pip3 install <package-name>

Install packages from requirements file

  1. ✏️ Install single package. Example:

    pip3 install -r requirements.txt

References

  1. man pip3