mkpyproject funktioniert jetzt auch ohne python interpreter

This commit is contained in:
Michael Stangl
2026-06-10 10:18:50 +02:00
parent 7320efba56
commit 0ab28f5cca
14 changed files with 478 additions and 43 deletions
@@ -0,0 +1,20 @@
@echo off
REM ================================================================
REM __PROJECT_UPPER__ - Python Virtual Environment aktivieren
REM ================================================================
call "%~dp0setenv.bat"
if not exist "%PROJECT%\.venv" (
echo FEHLER: Virtual environment nicht gefunden.
echo Bitte zuerst bin\install_py.bat ausfuehren.
exit /b 1
)
call "%PROJECT%\.venv\Scripts\activate.bat"
echo Virtuelle Umgebung aktiviert.
echo Python-Version:
python --version
echo.
echo Installierte Pakete:
pip list