Skip to content

Commit

Permalink
Fix virtual environment creation in builds with standalone host Python
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Jan 27, 2025
1 parent 12eeb3e commit a91ea37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def bootstrap():
BUILD.mkdir(exist_ok=True)

venv.create(VENV, with_pip=True)
venv.create(VENV, with_pip=True, symlinks=True)

subprocess.run([str(PIP), "install", "-r", str(REQUIREMENTS)], check=True)

Expand Down

0 comments on commit a91ea37

Please sign in to comment.