From ce22620e588809ab9dc9717deaaa37f763382283 Mon Sep 17 00:00:00 2001 From: Alex Bezdieniezhnykh Date: Wed, 30 Apr 2025 20:14:23 +0300 Subject: [PATCH] update build script --- Azaion.Inference/build.cmd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Azaion.Inference/build.cmd b/Azaion.Inference/build.cmd index 1eee32e..4b816d8 100644 --- a/Azaion.Inference/build.cmd +++ b/Azaion.Inference/build.cmd @@ -5,13 +5,12 @@ cd %~dp0 echo remove dist folder: if exist dist rmdir dist /s /q if exist build rmdir build /s /q -if exist venv rmdir venv /s /q echo install python and dependencies python -m venv venv venv\Scripts\python -m pip install --upgrade pip -venv\Scripts\pip install --no-cache-dir -r requirements.txt +venv\Scripts\pip install -r requirements.txt venv\Scripts\pip install --upgrade pyinstaller pyinstaller-hooks-contrib venv\Scripts\python setup.py build_ext --inplace