Python
Anaconda
cv2
python3.

OpenCV(cv2)をcondaでインストール (python3.6)

結論

conda install -c conda-forge opencv

環境

$python --version # Python 3.6.3 :: Anaconda custom (64-bit)

変遷

この記事を見て、以下のコマンドを試したがうまくいかない
https://qiita.com/matken11235/items/2a17dc7c460b8d606efc

$ conda install -c menpo opencv3
Solving environment: failed

UnsatisfiableError: The following specifications were found to be in conflict:
  - opencv3
  - xlwings
Use "conda info <package>" to see the dependencies for each package.

githubのcondaのissue(https://github.com/conda/conda/issues/2448) に、
conda-forgeでインストールしたら上手くいくぜ!! という記事があったので、以下のコマンドを試したら上手く行った。
conda install -c conda-forge opencv