From 295c0c020fd87ea578f8d829421791dbea96373a Mon Sep 17 00:00:00 2001 From: Sick Prodigy Date: Wed, 3 Jun 2026 17:54:51 -0400 Subject: [PATCH] docs: update installation instructions to use bash syntax and clarify virtual environment setup --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4b24aec..976a381 100644 --- a/README.md +++ b/README.md @@ -14,15 +14,15 @@ For songs, release-group expansion is enabled by default. When a rated Navidrome Install dependencies: -```powershell -python -m pip install -r requirements.txt +```bash +python3 -m pip install -r requirements.txt ``` -Using a virtual environment is recommended: +Using a Linux virtual environment is recommended: -```powershell -python -m venv .venv -.\.venv\Scripts\Activate.ps1 +```bash +python3 -m venv .venv +source .venv/bin/activate python -m pip install -r requirements.txt ``` @@ -41,19 +41,19 @@ MB_PASSWORD=your-musicbrainz-password Preview what would be submitted: -```powershell +```bash python musicbrainz-ratings-helper.py --dry-run ``` Run for one Navidrome artist: -```powershell +```bash python musicbrainz-ratings-helper.py --dry-run --artist-id 5YPCM8WgUTYDxJPS8QUuOO ``` Submit ratings for real: -```powershell +```bash python musicbrainz-ratings-helper.py ```