Answers for "python install required packages"

1

python install required packages

# This is assuming there is a requirements.txt and pip is funtional.
# Open up a terminal window and navigate to the directory the requirements file is stored in.

# For windows:
py -3 -m pip install -r requirements.txt
# For linux & Mac:
python -m pip install -r requirements.txt
Posted by: Guest on April-07-2021

Code answers related to "python install required packages"

Python Answers by Framework

Browse Popular Code Answers by Language