2023-04-30 22:57:50 +00:00
|
|
|
@echo off
|
|
|
|
|
2023-04-30 22:49:30 +00:00
|
|
|
REM Change python whatever
|
|
|
|
set pyexe=python34\python.exe
|
|
|
|
|
|
|
|
REM The list of packages this thing requires (maybe?)
|
2023-05-01 04:34:56 +00:00
|
|
|
set packages=requests colorama==0.4.1 websocket-client toml readchar
|
2023-04-30 22:49:30 +00:00
|
|
|
|
|
|
|
REM Actually install the packages... maybe?
|
|
|
|
%pyexe% -m pip install %packages%
|