Skip to content

Commit

Permalink
cli_launcher: Disable symlinks on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrosenthal committed Feb 12, 2024
1 parent b76b216 commit c1d8ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def build_venv() -> None:
venv.EnvBuilder(
system_site_packages=False,
clear=bool(os.environ.get("ALGOBOWL_FORCE_UPDATE")),
symlinks=True,
symlinks=sys.platform != "win32",
with_pip=True,
).create(get_venv_dir())
quiet_run([venv_cmd("pip"), "install", "--upgrade", "pip"])
Expand Down

0 comments on commit c1d8ce3

Please sign in to comment.