diff --git a/setup.bat b/setup.bat
index 606dc06c84b84180e3e4de31c5bea71d05ab7383..eff89b609efb2c809737b347caf0890ec8dd9753 100644
--- a/setup.bat
+++ b/setup.bat
@@ -4,4 +4,4 @@ if %ERRORLEVEL% NEQ 0 (
     python3 -m pip install -r .\requirements.txt
 )
 echo Setup complete
-echo You can launch the program by running 'python3 .\src\main.py'
+echo You can launch the program by running 'run.bat' file.
diff --git a/setup.sh b/setup.sh
index 51dcc3247548a64848a06438653b1aa175dc2468..bd4e30384ac744cdc8826e8b188b00e1d085250c 100644
--- a/setup.sh
+++ b/setup.sh
@@ -1,4 +1,4 @@
 chmod +rx requirements.txt
 pip3 install -r requirements.txt || python3 -m pip install -r requirements.txt
 echo "Setup complete"
-echo "You can launch the program by running 'python3 src/main.py'"
+echo "You can launch the program by running 'chmod +x ./run.sh && ./run.sh'"