Skip to content
Snippets Groups Projects
Commit 16a23c55 authored by Daniel Agar's avatar Daniel Agar
Browse files

ubuntu env setup script install python deps system wide in docker

parent c7ff4a87
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,15 @@ sudo apt-get -yy --quiet --no-install-recommends install \
zip
# python dependencies
python -m pip install --user --upgrade pip setuptools wheel
python -m pip install --user -r ${DIR}/requirements.txt
if [ -f /.dockerenv ]; then
# in docker install requirements system wide
sudo python -m pip install --upgrade pip setuptools wheel
sudo python -m pip install -r ${DIR}/requirements.txt
else
# otherwise only install for the user
python -m pip install --user --upgrade pip setuptools wheel
python -m pip install --user -r ${DIR}/requirements.txt
fi
# java (jmavsim or fastrtps)
# TODO: only install when necessary
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment