I just installed Bottle and add it into this directory: /Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3
And when I was trying to run the HelloWorld example in http://bottlepy.org/docs/dev/tutorial.html#installation
and opened localhost:8080/hello
, there was nothing on the page.
>>> from bottle import route, run
>>>
>>> @route('/hello')
... def hello():
... return "Hello World!"
...
>>> run(host='localhost', port=8080, debug=True)
Bottle v0.13-dev server starting up (using WSGIRefServer())...
Listening on http://localhost:8080/
Hit Ctrl-C to quit.
I don't know why, please help!