I tried installing the web.py module through pip, but I got an import error. Specifically
import utils, db, net, wsgi, http, webapi, httpserver, debugerror
ImportError: No module named 'utils'
So, I realized that this has something to do with the fact that web.py is incompatible with python3.x. So the question is, what are my alternatives? Would I be better off installing python 2.7+ along with python3? Or is there a way I could use this module online with the python 2.7+ interpreter?
user6762714
source
share