Web.py / No module named 'utils'`

I had this same Error using pip install. I just ran pip2 install web.py and it successfully installed. (for anyone still reading this in 2016)


The issue is web.py is native for python 2.7+, however, there are several options.

  • Install python 2.7+ (recommend using virtualenv)
  • Check out this group that is porting web.py to python 3.x
  • Use bottle.py as an alternative (Native to 2.5+ and 3.x)

Aside from these options to directly address the issue of 'utils' not being found, you can download the package here. This does not get around the compatibility issues but just for reference.

Tags:

Python