Update Installation.md

Updated Raspbian thnx to @inquilino
TRaSH 2020-08-01 11:06:58 +02:00
parent e598e4e972
commit 50fc4b863e
1 changed files with 7 additions and 4 deletions

@ -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/`
------