Skip to content

Commit

Permalink
Create install_dependencies.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
julesontheroad committed Mar 5, 2019
1 parent cdbb5f8 commit 1a56995
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions py/install_dependencies.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
@ECHO OFF
set "pycommand=py -3"
set "op_file=%~dp0zconfig/NSCB_options.cmd"
setlocal
if exist "%op_file%" call "%op_file%"
endlocal & (
set "pycommand=%pycommand%"
)

call :program_logo
ECHO.
ECHO Installing dependencies
ECHO.
%pycommand% -m pip install urllib3 unidecode tqdm bs4 tqdm requests image pywin32
ECHO.
ECHO. Check if dependencies were installed correctly before exiting the .bat file.
PAUSE
exit

:program_logo

ECHO __ _ __ __
ECHO ____ _____ ____ / /_ __ __(_) /___/ /__ _____
ECHO / __ \/ ___/ ___/ / __ \/ / / / / / __ / _ \/ ___/
ECHO / / / (__ ) /__ / /_/ / /_/ / / / /_/ / __/ /
ECHO /_/ /_/____/\___/____/_.___/\__,_/_/_/\__,_/\___/_/
ECHO /_____/
ECHO -------------------------------------------------------------------------------------
ECHO NINTENDO SWITCH CLEANER AND BUILDER
ECHO -------------------------------------------------------------------------------------
ECHO ============================= BY JULESONTHEROAD =============================
ECHO -------------------------------------------------------------------------------------
ECHO " POWERED WITH NUT BY BLAWAR "
ECHO " AND LUCA FRAGA'S HACBUILD "
ECHO -------------------------------------------------------------------------------------
ECHO Program's github: https://github.com/julesontheroad/NSC_BUILDER
ECHO Revised hacbuild: https://github.com/julesontheroad/hacbuild
ECHO Blawar's NUT : https://github.com/blawar/nut
ECHO -------------------------------------------------------------------------------------
exit /B

0 comments on commit 1a56995

Please sign in to comment.