mirror of
https://github.com/pablorevilla-meshtastic/meshview.git
synced 2026-07-01 15:31:43 +02:00
Cleanup the install process
This commit is contained in:
@@ -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`:
|
||||
|
||||
Reference in New Issue
Block a user