Skip to content

Commit

Permalink
feat: make venv independent by ignoring site packages
Browse files Browse the repository at this point in the history
  • Loading branch information
xxthunder committed Jun 20, 2024
1 parent 4a5e79d commit 8575a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def create(self) -> None:
subsequent calls to `pip` and `run` operate within this environment.
"""
try:
venv.create(self.venv_dir, with_pip=True, system_site_packages=True)
venv.create(env_dir=self.venv_dir, with_pip=True)
except PermissionError as e:
if "python.exe" in str(e):
raise UserNotificationException(
Expand Down

0 comments on commit 8575a47

Please sign in to comment.