Reputation: 21662
Is there any "Out-of-the-box" installation method for opencv for python on windows?
I'm looking for something like pip install opencv
, or similar for a package that contains most common scientific libs and opencv.
I know only the installation method wherein I compile opencv with the Python support flag, and then manually copy the necessary files to the python folder.
I am aware of the prebuilt packages at http://www.lfd.uci.edu/~gohlke/pythonlibs/, but they are out of date.
I'm using Anaconda IPython and it seems an opencv package is available only for Linux (http://docs.continuum.io/anaconda/pkgs.html).
Upvotes: 0
Views: 927
Reputation: 11232
The pre-built Libraries on SourceForge contain the 32 Bit python module under build/python/2.7. You just need to copy it to Anaconda x86's library and you're all set.
If you need x64 under Windows you have to make them yourself, I believe.
Upvotes: 3