Skip to content

Commit 5f0ba87

Browse files
authored
Install ssl first to allow fetching of https content through urllib (#79)
1 parent 2863507 commit 5f0ba87

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/pyodide-kernel/src/worker.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export class PyodideRemoteKernel {
7777
protected async initKernel(options: IPyodideWorkerKernel.IOptions): Promise<void> {
7878
// from this point forward, only use piplite (but not %pip)
7979
await this._pyodide.runPythonAsync(`
80+
await piplite.install(['ssl'], keep_going=True);
8081
await piplite.install(['sqlite3'], keep_going=True);
8182
await piplite.install(['ipykernel'], keep_going=True);
8283
await piplite.install(['comm'], keep_going=True);

0 commit comments

Comments
 (0)