2023-04-30 22:57:50 +00:00
|
|
|
@echo off
|
2023-05-01 20:39:41 +00:00
|
|
|
setlocal
|
2023-05-01 20:39:55 +00:00
|
|
|
cd /d "%~dp0"
|
2023-04-30 22:57:50 +00:00
|
|
|
|
2023-04-30 22:49:30 +00:00
|
|
|
REM Change python whatever
|
2023-05-01 20:40:43 +00:00
|
|
|
set "pyexe=python34\python.exe"
|
2023-04-30 22:49:30 +00:00
|
|
|
|
|
|
|
REM The list of packages this thing requires (maybe?)
|
2023-05-01 20:40:43 +00:00
|
|
|
set "packages=requests colorama==0.4.1 websocket-client toml readchar win-unicode-console"
|
2023-04-30 22:49:30 +00:00
|
|
|
|
|
|
|
REM Actually install the packages... maybe?
|
2023-05-01 20:42:15 +00:00
|
|
|
"%pyexe%" -m pip install %packages%
|