qcs-python/setup.bat
2023-04-30 20:46:08 -04:00

10 lines
271 B
Batchfile

@echo off
REM Change python whatever
set pyexe=python34\python.exe
REM The list of packages this thing requires (maybe?)
set packages=requests colorama==0.4.1 websocket-client toml
REM Actually install the packages... maybe?
%pyexe% -m pip install %packages%