cyblocker / CollaGitHub

A chatbot with botframework to help people find collaborators on GitHub
3 stars 4 forks source link

Tensorboard does not support Python 3 #9

Closed libinzheng closed 7 years ago

libinzheng commented 7 years ago

tensorboard.py and tensorboard_handler.py are still using BaseHTTPServer which was move to http.server in Python 3. There are some other changes with StringIO and urlparse that were quickly resolved with 2to3.

Strings also need to be encoded for the wfile.writes in tensorboard_handler.py.

Everything seemed to work after I made these changes.