Merge branch 'main' of github.com:skinnyrad/Lora-Scanner

Merging Doc Changes
This commit is contained in:
Halcy0nic
2024-07-09 15:58:50 -06:00
3 changed files with 23 additions and 2 deletions

View File

@@ -41,4 +41,4 @@ EOT
pip3 install -r requirements.txt
# Inform the user that the installation is complete
echo "Installation complete. You can now run your application using: python3 your_script.py"
echo "Installation complete. You can now run your application using: python3 app.py"

View File

@@ -35,5 +35,5 @@ echo Requests==2.31.0 >> requirements.txt
pip install -r requirements.txt
:: Inform the user that the installation is complete
echo Installation complete. You can now run your application using: python your_script.py
echo Installation complete. You can now run your application using: python app.py
pause

21
run-windows.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
:: Check if Python3 is installed
python --version >nul 2>&1
IF %ERRORLEVEL% EQU 0 (
echo Running application with Python...
python app.py
GOTO END
)
python3 --version >nul 2>&1
IF %ERRORLEVEL% EQU 0 (
echo Running application with Python3...
python3 app.py
GOTO END
)
echo Python is not installed. Please install Python3 to run the application.
:END
pause