From dece19e37024c05e9fc342202510f60759442004 Mon Sep 17 00:00:00 2001 From: Josh Santos Date: Mar 05 2021 20:00:00 +0000 Subject: Use python3 native venv, install tox in venv --- diff --git a/README.md b/README.md index 35c96d4..795c7de 100644 --- a/README.md +++ b/README.md @@ -111,14 +111,14 @@ git clone https://pagure.io/elections.git Set up venv (replacing `` and ``): ``` -pip install --user virtualenv tox -mkvirtualenv / -. / +python -m venv / +. //bin/activate ``` Install requirements: ``` +pip install tox pip install -r requirements.txt ```