Avoid sudo being required with pip

This commit is contained in:
Chuck Lantz
2020-01-18 00:27:28 +00:00
parent 797aef8e05
commit 76ea9a8c2b
2 changed files with 9 additions and 1 deletions

View File

@@ -18,7 +18,7 @@
"appPort": [ 9000 ],
// Install flask and any other dependencies
"postCreateCommand": "sudo pip install -r requirements.txt",
"postCreateCommand": "pip install -r requirements.txt",
// Comment out next line to run as root
"remoteUser": "vscode",