Update README.md

This commit is contained in:
Spotizerr
2025-08-17 18:00:51 -06:00
committed by GitHub
parent dc9470c973
commit d7f4812c17

View File

@@ -26,12 +26,35 @@ docker run --network=host --rm -it cooldockerizer93/spotizerr-auth
If docker doesn't work (it probably won't unless your on linux) you can still run it in bare metal.
Run the installer:
### Run the installer
```
<details>
<summary>Linux / macOS</summary>
```bash
python3 -m venv .venv && source .venv/bin/activate && pip install spotizerr-auth
````
</details>
<details>
<summary>Windows (PowerShell)</summary>
```powershell
python -m venv .venv; .venv\Scripts\Activate.ps1; pip install spotizerr-auth
```
</details>
<details>
<summary>Windows (cmd.exe)</summary>
```cmd
python -m venv .venv && .venv\Scripts\activate && pip install spotizerr-auth
```
</details>
And then run
```