Bokeh plots do not display in QWebView
问题 I have following code that works on linux and my windows 7 machine even using WinPython environment: # plt_file is valid html produced by Bokeh and that is correctly displayed in browser with open(plt_file, "r") as f: plot = f.read() # self.plot_web_view.setContent(plot) url = QUrl(plt_file) self.plot_web_view.setHtml(plot, url) But when I distribute my application using WinPyhton my plot doesn't show up in QWebView and no error is raised... If I try to load random html-files into QWebView in