Tutor installation fail on Ubuntu 20.04

Hi,

I am trying to install the Tutor on Ubuntu 20.04 by following the instruction on Tutor official site. I am getting the following error:

ERROR: 137
Error: Command failed with status 137: docker-compose -f /home/xyz/.local/share/tutor/env/local/docker-compose.yml -f /home/xyz/.local/share/tutor/env/local/docker-compose.prod.yml --project-name tutor_local -f /home/xyz/.local/share/tutor/env/local/docker-compose.jobs.yml run --rm lms-job sh -e -c dockerize -wait tcp://mysql:3306 -timeout 20s

echo "Loading settings $DJANGO_SETTINGS_MODULE"

./manage.py lms migrate

# Fix incorrect uploaded file path
if [ -d /openedx/data/uploads/ ]; then
  if [ -n "$(ls -A /openedx/data/uploads/)" ]; then
    echo "Migrating LMS uploaded files to shared directory"
    mv /openedx/data/uploads/* /openedx/media/
    rm -rf /openedx/data/uploads/
  fi
fi

# Create waffle switches to enable some features, if they have not been explicitly defined before
# Completion tracking: add green ticks to every completed unit
(./manage.py lms waffle_switch --list | grep completion.enable_completion_tracking) || ./manage.py lms waffle_switch --create completion.enable_completion_tracking on

Error 137 almost certainly means that you do not have enough memory on your computer: Troubleshooting — Tutor documentation

1 Like

Thanks, it is all sorted.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.