I'm trying to install one well-known framework and I cannot find any info regarding Python version used. The framework is mostly on cpp with some python wrapping. I've check the website, github and readme. How can I know this?
I've originally installed everything for python 3, because I see print()
with parenthesis. But when I try to import it I get error
ImportError: dynamic module does not define init function
(which seems to arise from cpp
module)
which is described as version mismatch error in other SO answer. Now I have to reinstall all prerequisites to python 2, but I'm still not sure which version should I use actually.