| |
@@ -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
|
| |
```
|
| |
|
| |