Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
 
PREVIOUS NEXT
Tagged: #python #install #required #packages
ADD COMMENT
Topic
Name
2+6 =