I am new to Python, and I am trying to run a web.py app with Python Anywhere, but I keep getting the No template named index error. I've modified wsgi.py to use the following:
import web
import MySQLdb
urls = (
'/', 'index'
)
render = web.template.render('/home/user/templates/')
Any help would be greatly appreciated.
'/home/user/templates/', or'/home/rhpt/templates/'(or whatever your username is)? Second, have you actually created that directory and put anything there? If not, of course you're going to get some kind of error trying to access it. Are you following some kind of tutorial? If so, which one are you following, and have you deviated from it at any point? – abarnert Nov 20 '12 at 1:43