Last active
August 7, 2023 15:02
-
-
Save dentolos19/ed8a1861506988a76eb3c38934d515df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
cd /d %~dp0 REM change working directory to the directory of the script | |
pip freeze > requirements.txt | |
pip uninstall -y -r requirements.txt | |
del requirements.txt | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment