21
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows 10 でPython3.6でopencv3インストール

Last updated at Posted at 2017-05-14

環境:Windows 10
   Python 3.6
   conda version : 4.3.14
Date: 2017/05/15

以下のようにopencv3をインストールするとしたら:

$ conda install -c menpo opencv3
  Fetching package metadata ...........
  Solving package specifications: .
  UnsatisfiableError: The following specifications were found to be in conflict:
    - opencv3 -> python 2.7* -> openssl 1.0.1*
    - python 3.6*
 Use "conda info <package>" to see the dependencies for each package.

このようなエラーが出ってきた、まだ condaの一般チャンネルでPython3.6に最新のopencv3が対応できてないようです。
それで、conda-forgeチャンネルを追加する必要があります(or自分でコンパイルするか)。

#1

$ conda config --add channels conda-forge

#2

$ conda install opencv

これでできるはずだ!

21
11
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
21
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?