Skip to content

Commit

Permalink
fix: Install full pkg requirement not just name
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie authored Dec 16, 2024
1 parent e8fd46e commit 653f1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/usePyodide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ async def _install_requirements_from_dir(dir: str) -> None:
if pkg_name not in micropip.list():
print(f"Installing {pkg_name} ...")
await micropip.install(pkg_name)
await micropip.install(req)
if len(extras) == 0:
continue
Expand Down

0 comments on commit 653f1c5

Please sign in to comment.