Answers for "get required packages from python project"

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
0

get required packages from python project

pip install pipreqs
pipreqs /home/project/location
Posted by: Guest on October-13-2021

Code answers related to "get required packages from python project"

Python Answers by Framework

Browse Popular Code Answers by Language