I’m coding in Python 2.7 using Komodo 8.5 on OS X v10.9. I’m a novice Komodo user.
I’ve added OpenCV using brew. It was installed here: /usr/local/Cellar
In my code I have:
import cv2
When I type “cv2.” autocomplete gives me no options. The import and OpenCV code work fine otherwise.
Here’s from the Help/Log:
[2014-12-30 06:20:37,082] [ERROR] koCodeIntel: error evaluating completions:
trigger: <Trigger 'python-complete-object-members' at 318>
log:
INFO: eval 'cv2' at findsquare.py#16 <Trigger 'python-complete-object-members' at 318>
INFO: start scope is (<blob 'findsquare'>, [])
INFO: find 'cv2 ...' starting at (<blob 'findsquare'>, []):
DEBUG: 'cv2 ...' from <import numpy as np>?
DEBUG: 'cv2 ...' from <import argparse>?
DEBUG: 'cv2 ...' from <import cv2>?
INFO: is blob 'cv2' from <Python curdirlib>? no
INFO: is blob 'cv2' from <Python extradirslib>? no
INFO: is blob 'cv2' from <Python envlib>? no
INFO: is blob 'cv2' from <Python cataloglib: >? no
INFO: is blob 'cv2' from <python-2.7 stdlib>? no
ERROR: evaluating 'cv2' at findsquare.py#16: could not find data for Python blob 'cv2'
How do I tell Komodo about OpenCV? What file(s) is it looking for and where?
I have other packages I’ve added I’d also like to enable.
Thank you.