From 0d3c036feb5b68812923312112150a698d692b49 Mon Sep 17 00:00:00 2001 From: Gray Date: Wed, 7 Feb 2018 16:56:35 +0200 Subject: [PATCH] Update README.md maybe I did not notice something important, but I could not found python 3.6 opencv and installed using simple ```pip install opencv```. As a bonus, it is possible to lighten this repo removing ```python3*_64bit_requirements``` folders --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 465ddf5..6635e2c 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,7 @@ CNTK can be easily installed by following the instructions on the [setup page](h Anaconda comes with many packages already pre-installed. The only missing packages are opencv and scikit-learn. These can be installed easily using *pip* by opening a command prompt and running: ````bash C:/local/CNTK-2-0/cntk/Scripts/cntkpy35.bat #activate CNTK's python environment -cd resources/python35_64bit_requirements/ -pip.exe install -r requirements.txt +pip install opencv-python ```` In the code snippet above, we assumed that the CNTK root directory is *C:/local/CNTK-2-0/*. The opencv python wheel was originally downloaded from this [page](http://www.lfd.uci.edu/~gohlke/pythonlibs/).