#94 Use python3 native venv, install tox in venv
Opened 3 years ago by nerdsville. Modified 3 years ago
nerdsville/elections support/update-docs  into  develop

file modified
+3 -3
@@ -111,14 +111,14 @@ 

  Set up venv (replacing `<base_path_for_venv>` and `<venv_name>`):

  

  ```

- pip install --user virtualenv tox

- mkvirtualenv <base_path_for_venv>/<venv_name>

- . <base_path_for_venv>/<venv_name>

+ python -m venv <base_path_for_venv>/<venv_name>

+ . <base_path_for_venv>/<venv_name>/bin/activate

  ```

  

  Install requirements:

  

  ```

+ pip install tox

  pip install -r requirements.txt

  ```

  

no initial comment

@nerdsville any reason that tox shouldn't be added to requirements.txt instead?

Metadata