So I need to know the dependency that I was using in order to do migration, just do the following:
We start off installing
pip install pipreqsNext cd into working directory and then
[working directory]>pipreqs .which yields a message:
INFO: Successfully saved requirements file in .\requirements.txtthat looks like the following:
now switch into our virtual environment and pip install them:
pipenv shell pip install -r requirements.txtand we are done.
No comments:
Post a Comment