Commit 7bf49357743f7808600648d72ea98d63ea43570b

Authored by Etienne Pallier
2 parents 6b8cf9d9 3253ad8e
Exists in master and in 1 other branch dev

Merge branch 'master' of https://gitlab.irap.omp.eu/epallier/pyros.git

Showing 1 changed file with 12 additions and 0 deletions   Show diff stats
install/install_requirements.sh 0 → 100755
... ... @@ -0,0 +1,12 @@
  1 +# check that python is at least version 3
  2 +python -V
  3 +#TODO:...
  4 +
  5 +# Upgrade pip
  6 +pip install --upgrade pip
  7 +
  8 +# Upgrade wheel
  9 +pip install --upgrade wheel
  10 +
  11 +# Install the needed python packages
  12 +pip install -r REQUIREMENTS.txt
... ...