Adding environment setup and instructions
This commit is contained in:
17
setup-env.bat
Normal file
17
setup-env.bat
Normal file
@@ -0,0 +1,17 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
echo [ESP32 Setup] Creating Python virtual environment...
|
||||
python -m venv .venv
|
||||
|
||||
echo [ESP32 Setup] Activating environment...
|
||||
call .venv\Scripts\activate.bat
|
||||
|
||||
echo [ESP32 Setup] Installing dependencies...
|
||||
pip install -r requirements.txt
|
||||
|
||||
echo [ESP32 Setup] Done!
|
||||
echo To activate environment later: call .venv\Scripts\activate.bat
|
||||
|
||||
endlocal
|
||||
pause
|
||||
Reference in New Issue
Block a user