Skip to content

Commit e4ce938

Browse files
committed
feat: finish assign0 setup
1 parent e3536e0 commit e4ce938

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assign0/autograder/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _install_requirement(package: str):
5555
import sys
5656

5757
subprocess.check_call(
58-
[sys.executable, "-m", "pip", "install", package],
58+
[sys.executable, "-m", "pip", "install", "--no-user", package],
5959
stdout=subprocess.DEVNULL,
6060
)
6161

@@ -93,7 +93,7 @@ def check_pip_update():
9393
# Assignment specific packages
9494
if os.path.isfile(REQUIREMENTS):
9595
subprocess.check_call(
96-
[sys.executable, "-m", "pip", "install", "-r", REQUIREMENTS],
96+
[sys.executable, "-m", "pip", "install", "--no-user", "-r", REQUIREMENTS],
9797
stdout=subprocess.DEVNULL,
9898
)
9999

0 commit comments

Comments
 (0)