OHDSI Home | Forums | Wiki | Github

Trouble Displaying Curation Report Directory

Hello,

I am following the instructions here:
https://joinallofus.atlassian.net/wiki/spaces/DRC/pages/410550398/FQHC+Alpha+Sites+Data+Transfer+Retrospective

  1. Ran command python -m http.server 80 in C:\curation_report folder
  2. Opened a browser: happens with both IE 11 and chrome 69
  3. I am getting an ERR_CONNECTION_REFUSED for chrome and for IE

There was a temporary DNS error. Try refreshing the page.
Error Code: INET_E_RESOURCE_NOT_FOUND

Are the instructions updated for windows 10 64 bit operating system? Thank you!

Hi,

So I resolved this on my own. A couple things the instructions do not mention is that the http module is compatible only with Python 3. Once I ran the script in the python 3 environment it worked. For python 2, you need to use python -m SimpleHTTPServer

t