mirror of
https://zotify.xyz/zotify/zotify.git
synced 2024-11-09 16:52:00 +01:00
adds INSTALLATION.md
This commit is contained in:
parent
fe6de7698a
commit
4e6c425afa
1 changed files with 32 additions and 0 deletions
32
INSTALLATION.md
Normal file
32
INSTALLATION.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
### Installing Zotify
|
||||
|
||||
> **Windows**
|
||||
|
||||
This guide uses *Scoop* (https://scoop.sh) to simplify installing prerequisites and *pipx* to manage Zotify itself.
|
||||
There are other ways to install and run Zotify on Windows but this is the official recommendation, other methods of installation will not receive support.
|
||||
|
||||
- Open PowerShell (cmd will not work)
|
||||
- Install Scoop by running:
|
||||
- `Set-ExecutionPolicy RemoteSigned -Scope CurrentUser`
|
||||
- `irm get.scoop.sh | iex`
|
||||
- After installing scoop run: `scoop install python ffmpeg-shared git`
|
||||
- Install pipx:
|
||||
- `python3 -m pip install --user pipx`
|
||||
- `python3 -m pipx ensurepath`
|
||||
Now close PowerShell and reopen it to ensure the pipx command is available.
|
||||
- Install Zotify with: `pipx install https://get.zotify.xyz`
|
||||
- Done! Use `zotify --help` for a basic list of commands or check the *README.md* file in Zotify's code repository for full documentation.
|
||||
|
||||
> **macOS**
|
||||
- Open the Terminal app
|
||||
- Install *Homebrew* (https://brew.sh) by running: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
|
||||
- After installing Homebrew run: `brew install python@3.11 pipx ffmpeg git`
|
||||
- Setup pipx: `pipx ensurepath`
|
||||
- Install Zotify: `pipx install https://get.zotify.xyz`
|
||||
- Done! Use `zotify --help` for a basic list of commands or check the README.md file in Zotify's code repository for full documentation.
|
||||
|
||||
> **Linux (Most Popular Distributions)**
|
||||
- Install `python3`, `pip` (if a separate package), `ffmpeg`, and `git` from your distribution's package manager or software center.
|
||||
- Then install pipx, either from your package manager or through pip with: `python3 -m pip install --user pipx`
|
||||
- Install Zotify `pipx install https://get.zotify.xyz`
|
||||
- Done! Use `zotify --help` for a basic list of commands or check the README.md file in Zotify's code repository for full documentation.
|
Loading…
Reference in a new issue