I am trying to run the interactive server, but when I navigate to the server URL, the page throws up a 500 code error (Internal Server Error).
The trace for the error is:
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/bottle.py", line 862, in _handle
return route.call(**args)
File "/usr/local/lib/python3.6/dist-packages/bottle.py", line 1740, in wrapper
rv = callback(*a, **ka)
File "/home/rudresh/Documents/machine_comprehension/Fast-Reading-Comprehension/demo.py", line 25, in home
with open('demo.html', 'r') as fl:
FileNotFoundError: [Errno 2] No such file or directory: 'demo.html'
127.0.0.1 - - [07/Apr/2018 10:07:55] "GET / HTTP/1.1" 500 739
127.0.0.1 - - [07/Apr/2018 10:07:56] "GET /favicon.ico HTTP/1.1" 404 740
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/bottle.py", line 862, in _handle
return route.call(**args)
File "/usr/local/lib/python3.6/dist-packages/bottle.py", line 1740, in wrapper
rv = callback(*a, **ka)
File "/home/rudresh/Documents/machine_comprehension/Fast-Reading-Comprehension/demo.py", line 25, in home
with open('demo.html', 'r') as fl:
FileNotFoundError: [Errno 2] No such file or directory: 'demo.html'
Which is obviously caused by the missing demo.html file. Can you please help me out with where do I procure the file from?
I am trying to run the interactive server, but when I navigate to the server URL, the page throws up a 500 code error (Internal Server Error).
The trace for the error is:
Which is obviously caused by the missing
demo.html
file. Can you please help me out with where do I procure the file from?I am running a Python3.6 on Ubuntu 16.04.