Skip to content

Commit a91ea37

Browse files
committed
Fix virtual environment creation in builds with standalone host Python
1 parent 12eeb3e commit a91ea37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
def bootstrap():
2222
BUILD.mkdir(exist_ok=True)
2323

24-
venv.create(VENV, with_pip=True)
24+
venv.create(VENV, with_pip=True, symlinks=True)
2525

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

0 commit comments

Comments
 (0)