From fc31bfd01cb7ae3e4dd540f62efe810fcd32edbf Mon Sep 17 00:00:00 2001 From: Bertrand Chauvin Date: Fri, 2 Jul 2021 15:36:57 +0200 Subject: [PATCH] Fix installation command for Ubuntu 20.04 Tested under Ubuntu 20.04 Using the pip3 command leads to an error saying the virtualenv command doesn't exist. Installing using apt + having used the pip3 command leads to a ModuleNotFoundError => suggesting to use the apt command only --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 97c1add..008ffd3 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,7 @@ Of course the first time you use nuxeo stacks it will take longer because you ha - On Ubuntu: ```bash - sudo apt install python3-pip jq - pip3 install virtualenv + sudo apt install python3-pip jq python3-virtualenv ``` Note that on Ubuntu, the first time `nuxeoenv.sh` is run it will install `ansible` locally.