docs: add venv install instructions

This commit is contained in:
thePR0M3TH3AN
2025-06-21 13:25:58 -04:00
parent 6fc7659a43
commit c4b37a5e82

View File

@@ -31,6 +31,14 @@ pipx install voxvera # recommended
pip install --user voxvera pip install --user voxvera
``` ```
If your system reports an "externally-managed" Python environment and blocks installation, create a virtual environment first:
```bash
python3 -m venv voxvera-venv
source voxvera-venv/bin/activate
pip install voxvera
```
The legacy `src/create_flyer.sh` script remains for backward compatibility. It The legacy `src/create_flyer.sh` script remains for backward compatibility. It
simply forwards its arguments to the Python CLI so existing workflows continue simply forwards its arguments to the Python CLI so existing workflows continue
to work. to work.