LoginSignup
1
0

More than 3 years have passed since last update.

dlib, cv2のインストール

Posted at

最近はコマンドさえ知っていれば一瞬でできるようになりました。

cv2

pip install opencv-python

dlib

Dockerfileに書くなら以下のようにする。

RUN apt-get update && apt-get upgrade -y && \
    apt-get install -y --no-install-recommends \
    curl \
    cmake \
    cmake-curses-gui \
    cmake-gui \
    git \     
    gobject-introspection \
    libbz2-dev \
    libcairo2-dev \
    libgirepository1.0-dev \
    libreadline-dev \
    libsqlite3-dev \
    lbssl-dev \
    cmake \


RUN pip install dlib
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0