Files
py-grex/scripts/install_dependencies.bat
2026-05-22 10:02:10 +02:00

11 lines
285 B
Batchfile

@echo off
REM install-dependencies.bat
REM Activate conda environment
CALL "%USERPROFILE%\anaconda3\Scripts\activate.bat" pygrex-exp-grs
REM Install editable package
pip install -e .
REM Verify if pygrex is importable
python -c "import pygrex; print('pygrex imported successfully')"