From 215817abc7c78666f624ed92e84d6e53c8c677d2 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Fri, 3 Oct 2025 11:59:21 -0700 Subject: [PATCH] Cleanup the install process --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 588811b..400f2d9 100644 --- a/README.md +++ b/README.md @@ -74,20 +74,19 @@ Create a Python virtual environment: from the meshview directory... ```bash -uv venv env || python3 -m venv env +python3 -m venv env ``` Install the environment requirements: ```bash -uv pip install -r requirements.txt || ./env/bin/pip install -r requirements.txt +./env/bin/pip install -r requirements.txt ``` Install `graphviz` on MacOS or Debian/Ubuntu Linux: ```bash -[ "$(uname)" = "Darwin" ] && brew install graphviz -[ "$(uname)" = "Linux" ] && sudo apt-get install graphviz +sudo apt-get install graphviz ``` Copy `sample.config.ini` to `config.ini`: