Browser-Scripts/setup.bat

16 lines
264 B
Batchfile
Raw Permalink Normal View History

2024-06-15 16:37:25 -07:00
@echo off
::Check if python is installed
:check
python --version 3>NUL
if errorlevel 1 goto errorNoPython
::If python is installed then it runs the program
pip install pyautogui
exit
::Install python
:errorNoPython
python
timeout /t 60
goto check