Memory the command to copy the settings in the current environment when migrating to another environment.
#Export current preferences
pip freeze > requirements.txt
#Installation of current preferences (exported requirements.Copy txt to the new environment and enter the following)
pip install -r requirements.txt
Recommended Posts