Install Python 3.5 for opencv - syntaxmonkey/Thesis GitHub Wiki

Ran into a problem when attempting to install opencv. One of the solutions specified here works: https://github.com/conda/conda/issues/2448

conda install python=3.5

conda install -c menpo opencv3

Also try: Seems to take a VERY long time. Aborted after 12 hours.

conda uninstall opencv

conda install -c https://conda.binstar.org/menpo opencv

Try #3

conda create -yn opencvenv python=3.5.2

activate opencvenv

conda install numpy

conda install -c menpo opencv3

conda install pillow

conda install -c conda-forge scikit-image

conda install -c conda-forge matplotlib

conda install pandas

To utilize the ENV: conda activate opencvenv.

Environment location: /Users/hengsun/anaconda3/envs/opencvenv.

YAY Project still runs.