diff --git a/build/linux/Dockerfile b/build/linux/Dockerfile index 1b22fa6..295a11e 100644 --- a/build/linux/Dockerfile +++ b/build/linux/Dockerfile @@ -9,7 +9,7 @@ RUN ln -s /usr/bin/python3 /usr/bin/python RUN git clone https://github.com/iperov/DeepFaceLive.git RUN python -m pip install --upgrade pip -RUN python -m pip install onnxruntime-gpu==1.8.1 numpy==1.21.2 numexpr opencv-python==4.5.3.56 opencv-contrib-python==4.5.3.56 pyqt6==6.1.1 onnx==1.10.1 torch==1.8.1 torchvision==0.9.1 +RUN python -m pip install onnxruntime-gpu==1.8.1 numpy==1.21.2 h5py numexpr opencv-python==4.5.3.56 opencv-contrib-python==4.5.3.56 pyqt6==6.1.1 onnx==1.10.1 torch==1.8.1 torchvision==0.9.1 WORKDIR /app/DeepFaceLive COPY example.sh example.sh diff --git a/build/windows/WindowsBuilder.py b/build/windows/WindowsBuilder.py index 4f912c8..fd40f1e 100644 --- a/build/windows/WindowsBuilder.py +++ b/build/windows/WindowsBuilder.py @@ -470,8 +470,9 @@ def build_deepfacelive_windows(release_dir, cache_dir, python_ver='3.7.9', backe clear_release_path=True) # PIP INSTALLATIONS - + builder.install_pip_package('numpy==1.21.3') + builder.install_pip_package('h5py') builder.install_pip_package('numexpr') builder.install_pip_package('opencv-python==4.5.3.56') builder.install_pip_package('opencv-contrib-python==4.5.3.56')