Difference between revisions of "Python requirements"

From John Freier
Jump to: navigation, search
(Created page with "Python Requirements These are python dependencies that may need to be installed. To install these dependencies you can use an application called pip. Install pip insta...")
 
(No difference)

Latest revision as of 09:21, 3 June 2022

Python Requirements

These are python dependencies that may need to be installed.

To install these dependencies you can use an application called pip.


Install

 pip install -r requirements.txt

To see all dependencies and lock all sub dependencies in place.

 pip freeze > requirements.txt