Skip to content

Commit 4101ac0

Browse files
committed
Removed sudo from pip
1 parent 7433a86 commit 4101ac0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2424
"forwardPorts": [
2525
8000
26-
]
26+
],
2727
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
28-
// "remoteUser": "root"
28+
"remoteUser": "root"
2929
}

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# install pip requirements
2323
# Use sudo to get access to filesystem
2424
# Note: Do not use --root-user-action to disable sudo warning since Github Actions's pip doesn't support it
25-
sudo pip install .
25+
pip install .

0 commit comments

Comments
 (0)