8 lines
229 B
Batchfile
8 lines
229 B
Batchfile
|
REM Change python whatever
|
||
|
set pyexe=python34\python.exe
|
||
|
|
||
|
REM The list of packages this thing requires (maybe?)
|
||
|
set packages=requests colorama
|
||
|
|
||
|
REM Actually install the packages... maybe?
|
||
|
%pyexe% -m pip install %packages%
|