We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2863507 commit 5f0ba87Copy full SHA for 5f0ba87
packages/pyodide-kernel/src/worker.ts
@@ -77,6 +77,7 @@ export class PyodideRemoteKernel {
77
protected async initKernel(options: IPyodideWorkerKernel.IOptions): Promise<void> {
78
// from this point forward, only use piplite (but not %pip)
79
await this._pyodide.runPythonAsync(`
80
+ await piplite.install(['ssl'], keep_going=True);
81
await piplite.install(['sqlite3'], keep_going=True);
82
await piplite.install(['ipykernel'], keep_going=True);
83
await piplite.install(['comm'], keep_going=True);
0 commit comments