change build instructions to be .venv instead of venv

This commit is contained in:
Spax
2025-11-02 14:48:33 -07:00
parent 6306af3874
commit 2784f5a103

View File

@@ -11,13 +11,13 @@ You might also need to install `texlive-latex-extra` with your package manager o
```bash ```bash
cd pghrt cd pghrt
python3 -m venv venv python3 -m venv .venv
venv/bin/pip install beautifulsoup4 .venv/bin/pip install beautifulsoup4
``` ```
## Build Instructions ## Build Instructions
```bash ```bash
latexmlc --destination=export/index.html pghrt latexmlc --destination=export/index.html pghrt
venv/bin/python soup.py .venv/bin/python soup.py
``` ```