Answers for "create requirements.txt from python script"

66

how to run requirements.txt in python

$ pip install -r requirements.txt
Posted by: Guest on May-10-2020
0

create requirements file and load it in new envirnment.

$ conda list -e > req.txt
$ conda create -n <environment-name> --file req.txt
Posted by: Guest on June-12-2021

Code answers related to "create requirements.txt from python script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language