Open aliig opened 4 years ago
Hi, I have exactly the same problem after downloading OpenVino toolkit for linux with FPGA support version 2020.4.287. the same issue is being solved in this thread, but I do not know, how to download changed files. https://github.com/OpenVisualCloud/Dockerfiles/issues/549
Hi, this problem is described in issue in official opencv-python repo and in their FAQ.
This worked, thank you
Edit the Dockerfile, and add RUN pip3 install scikit-build==0.11.1
before the last Command
about like this:
FROM nvcr.io/nvidia/cuda:10.0-cudnn7-runtime-ubuntu18.04
RUN DEBIAN_FRONTEND=noninteractive apt-get -qq update \
&& DEBIAN_FRONTEND=noninteractive apt-get -qqy install python3-pip ffmpeg git less nano libsm6 libxext6 libxrender-dev \
&& rm -rf /var/lib/apt/lists/*
COPY . /app/
WORKDIR /app
RUN pip3 install scikit-build==0.11.1
RUN pip3 install \
https://download.pytorch.org/whl/cu100/torch-1.0.0-cp36-cp36m-linux_x86_64.whl \
git+https://github.com/1adrianb/face-alignment \
-r requirements.txt
I'm struggling to get the proper linux environment to work for this, so I've resorted to using docker. I eventually got the program to work with the provided docker build instructions about a week or so ago on WSL2, but it doesn't seem to work for me any more.
docker build -t first-order-model .
fails for me on this step: full logAny ideas to get this working again?
Running on a fresh WSL2 Ubuntu build following the instructions here. Building with a fresh clone of this repo as well.
Thank you!