So I\'m getting the following error when running a script that imports web.
web
$ python bin/app.py Traceback (most recent call last): File \"bin/ap
The problem is that you most likely used pip install lpthw.web to install however the lpthw book is using python 2.7 so pip2.7 would fix this:
pip install lpthw.web
pip2.7 install lpthw.web