Skip to content

Commit

Permalink
Update install-colorama.bat
Browse files Browse the repository at this point in the history
Signed-off-by: Bubbles The Dev <[email protected]>
  • Loading branch information
KernFerm authored Sep 3, 2024
1 parent 9ecaf6f commit b926035
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions install-colorama.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
@echo off
setlocal

:: Check if Python is installed
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo [ERROR] Python is not installed or not added to the PATH.
echo Please install Python or ensure it is added to your PATH environment variable.
exit /b %errorlevel%
)

:: Define the package name
set "PACKAGE=colorama"

Expand Down

0 comments on commit b926035

Please sign in to comment.