pythonanacondasimplecv

How to set up SimpleCV on Anaconda (Windows 10)


I can't figure out how to set up SimpleCV. I downloaded it, and installed it, but have no idea where to go from here. How can I go about setting it up for use with Anaconda?


Solution

  • What about opening your Anaconda prompt and do

    pip install simplecv
    

    This will install the SimpleCV module to your python environement, making it accessible with import SimpleCV

    This can be done to any module you want to install. pip makes it really easy.