Skip to content

Commit

Permalink
Install PyPI packages in interpreter's site packages (#1890)
Browse files Browse the repository at this point in the history
  • Loading branch information
savingoyal authored Jun 18, 2024
1 parent 86a6991 commit 68306e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaflow/plugins/pypi/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
[
f"""set -e;
export PATH=$PATH:$(pwd)/micromamba;
micromamba run --prefix {prefix} pip --disable-pip-version-check install --root-user-action=ignore --no-compile {pypi_pkgs_dir}/*.whl"""
micromamba run --prefix {prefix} python -m pip --disable-pip-version-check install --root-user-action=ignore --no-compile {pypi_pkgs_dir}/*.whl --no-user"""
]
)

Expand Down

0 comments on commit 68306e7

Please sign in to comment.