Skip to content

Commit

Permalink
Remove --user from pip install in postCreate.sh
Browse files Browse the repository at this point in the history
venv is activated prior to this script execution following
opensafely-core/research-template-docker#26
so --user installation no longer possible
  • Loading branch information
Jongmassey authored May 20, 2024
1 parent 76269ed commit efddf07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/postCreate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

pip3 install --user -r .devcontainer/requirements.in
pip3 install -r .devcontainer/requirements.in

#set R working directory
! grep -q "$1" $R_HOME/etc/Rprofile.site && sudo tee -a $R_HOME/etc/Rprofile.site <<< "setwd(\"$1\")"
Expand Down

0 comments on commit efddf07

Please sign in to comment.