21 lines
No EOL
458 B
Batchfile
21 lines
No EOL
458 B
Batchfile
@echo off
|
|
SET "SCRIPT_PATH=%~1"
|
|
SET VENV_DIR="C:\Users\piero\Desktop\AIFotoONLUS\my_venv"
|
|
SET "PARAMS=%*"
|
|
SET "PARAMS=%PARAMS:*%SCRIPT_PATH%=%"
|
|
|
|
IF NOT EXIST %VENV_DIR% (
|
|
python -m venv %VENV_DIR%
|
|
)
|
|
|
|
call %VENV_DIR%\Scripts\activate.bat
|
|
|
|
pip install imutils==0.5.4
|
|
pip install numpy==1.20.1
|
|
pip install opencv-python==4.5.1.48
|
|
pip install Pillow==8.1.0
|
|
pip install pytesseract==0.3.7
|
|
|
|
python "%SCRIPT_PATH%" %PARAMS%
|
|
|
|
call %VENV_DIR%\Scripts\deactivate.bat |