We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69d240b commit aaadbe4Copy full SHA for aaadbe4
src/services/python-interpreter/service.ts
@@ -88,7 +88,7 @@ export class PyodidePythonEnvironment implements PythonEnvironment {
88
pyodide.FS.writeFile(pyodide?.PATH.join2(pythonEnvironmentHomeDir, f.filename), f.byte_data);
89
})
90
// load the packages we commonly use to avoid the latency hit during the user req
91
- await pyodide.loadPackage(["numpy", "matplotlib", "pandas"])
+ await pyodide.loadPackage(["numpy", "matplotlib", "pandas", "plotly"])
92
93
// set interrupt buffer to allow for termination
94
pyodide.setInterruptBuffer(this.interrupt);
0 commit comments