diff --git a/Installation.md b/Installation.md index 62312bd..325735a 100644 --- a/Installation.md +++ b/Installation.md @@ -71,17 +71,20 @@ Configuration files for Bazarr are stored in `/config`. - (Fedora / CentOS) Install [GIT](http://git-scm.com/) with `yum install git python3-pip python3-distutils` -- (Raspbian and maybe other ARM based distro) Install `python3-dev` with `apt-get install libxml2-dev libxslt1-dev python3-libxml2 python3-lxml unrar-free ffmpeg libatlas-base-dev` +- (Raspbian and maybe other ARM based distro) - (*thnx to @inquilino for the fixes/updates*) + + > `sudo apt-get update` + > `sudo apt-get install libxml2-dev libxslt1-dev python3-libxml2 python3-lxml unrar-free ffmpeg libatlas-base-dev` 1. Upgrade Python to version 3.7 or greater. 2. Run `sudo git clone https://github.com/morpheus65535/bazarr.git /opt/bazarr` 3. Install Python requirements using `pip install -r requirements.txt` + + > (Raspbian) Don't worry about `lxml` not being installed at this step, you have installed the module through `apt-get` anyway. 4. Change ownership to your preferred user for running programs (replace both instances of $user) `sudo chown -R $user:$user /opt/bazarr` - -> (Raspbian) Don't worry about `lxml` not being installed at this step, you have installed the module through `apt-get` anyway. -5. You can now start bazarr via `python bazarr.py` to start bazarr. +5. You can now start bazarr via `python3 bazarr.py` to start bazarr. 6. Open your browser and go to `http://localhost:6767/` ------