Python Install Required Packages

[Solved] Python Install Required Packages | Shell - Code Explorer | yomemimo.com
Question : python install required packages

Answered by : brandon-zhou

# 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

Source : | Last Update : Wed, 14 Apr 21

Question : get required packages from python project

Answered by : kiril-klein

pip install pipreqs
pipreqs /home/project/location

Source : https://stackoverflow.com/questions/35796968/get-all-modules-packages-used-by-a-python-project | Last Update : Wed, 20 Oct 21

Answers related to python install required packages

Code Explorer Popular Question For Shell