jesolem/PCV

PCV search image problem in imagesearch.py

Opened this issue · 0 comments

since the python 2.7.x contains the sqlite and the version is sqlite3. The imagesearch.py in the PCV:

from pysqlite2 import dbapi2 as sqlite

should be corrected as follows:

from sqlite3 import dbapi2 as sqlite

Then you will succeed.