Merge remote-tracking branch 'lumen/master' into prerelease

This commit is contained in:
Carlos Sanchez 2023-05-01 16:50:56 -04:00
commit 63a8f84017

View File

@ -1,10 +1,12 @@
@echo off
setlocal
cd /d "%~dp0"
REM Change python whatever
set pyexe=python34\python.exe
set "pyexe=python34\python.exe"
REM The list of packages this thing requires (maybe?)
set packages=requests colorama==0.4.1 websocket-client toml readchar win-unicode-console
set "packages=requests colorama==0.4.1 websocket-client toml readchar win-unicode-console"
REM Actually install the packages... maybe?
%pyexe% -m pip install %packages%
"%pyexe%" -m pip install %packages%