From a5b63a4f53335fb69f36188ceed1243c879bed66 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 8 Sep 2020 20:59:00 +0100 Subject: [PATCH] Add python3-setuptools to install list (#2153) Installing python3-setuptools was required on a fresh ubuntu 18.04 VM image. Otherwise the next line fails with "no module setuptools" --- cvat/apps/documentation/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvat/apps/documentation/installation.md b/cvat/apps/documentation/installation.md index ce2e9008dc53..bc83b7c084e0 100644 --- a/cvat/apps/documentation/installation.md +++ b/cvat/apps/documentation/installation.md @@ -67,7 +67,7 @@ server. Proxy is an advanced topic and it is not covered by the guide. defining and running multi-container docker applications. ```bash - sudo apt-get --no-install-recommends install -y python3-pip + sudo apt-get --no-install-recommends install -y python3-pip python3-setuptools sudo python3 -m pip install setuptools docker-compose ```