Skip to content

Commit

Permalink
Install ssl first to allow fetching of https content through urllib (#79
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jobovy authored Jan 17, 2024
1 parent 2863507 commit 5f0ba87
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/pyodide-kernel/src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export class PyodideRemoteKernel {
protected async initKernel(options: IPyodideWorkerKernel.IOptions): Promise<void> {
// from this point forward, only use piplite (but not %pip)
await this._pyodide.runPythonAsync(`
await piplite.install(['ssl'], keep_going=True);
await piplite.install(['sqlite3'], keep_going=True);
await piplite.install(['ipykernel'], keep_going=True);
await piplite.install(['comm'], keep_going=True);
Expand Down

0 comments on commit 5f0ba87

Please sign in to comment.