YouTubeDownloader v1.1.2
YouTube content downloader
Loading...
Searching...
No Matches
uninstall_packages.bat
Go to the documentation of this file.
1:: "uninstall_packages.bat"
2:: uninstall all packages
3
4@echo off
5
6set ENV_PATH=..\..\.venv
7set PY_PATH=%ENV_PATH%\Scripts\python
8
9set package_file=installed_packages.txt
10%PY_PATH% -m pip freeze > %package_file%
11%PY_PATH% -m pip uninstall -r %package_file% -y
12del %package_file%
13
14pause