From 6028cedde6e4f214a1b94bcfc40113a3fb12e407 Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 10 Jan 2018 15:19:46 -0500 Subject: [PATCH] Created Installation - Running from Source (markdown) --- Installation---Running-from-Source.md | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Installation---Running-from-Source.md diff --git a/Installation---Running-from-Source.md b/Installation---Running-from-Source.md new file mode 100644 index 0000000..7164001 --- /dev/null +++ b/Installation---Running-from-Source.md @@ -0,0 +1,34 @@ +## Running from Source + +bazarr require Python 2.7 and can be run from source. This will use *git* as updater, so make sure that is installed. + +Windows: + +* Install [GIT](http://git-scm.com/) +* Install [Python 2.7](http://www.python.org/download/releases/2.7.3/) +* Open up CMD and go to the folder you want to install bazarr. Something like Program Files. +* Run `git clone https://github.com/morpheus65535/bazarr.git`. +* Run `pip install -r requirements.txt` to install dependencies. +* You can now start bazarr via `bazarr.py` to start bazarr. +* Open your browser and go to `http://localhost:6767/` + +OS X: + +* Install [GIT](http://git-scm.com/) +* Open up `Terminal` +* Go to your App folder `cd /Applications` +* Run `git clone https://github.com/morpheus65535/bazarr.git` +* Go to bazarr folder `cd bazarr` +* Run `pip install -r requirements.txt` to install dependencies. +* You can now start bazarr via `python bazarr.py` to start bazarr. +* Open your browser and go to `http://localhost:6767/` + +Linux: + +* (Ubuntu / Debian) Install [GIT](http://git-scm.com/) with `apt-get install git-core` +* (Fedora / CentOS) Install [GIT](http://git-scm.com/) with `yum install git` +* 'cd' to the folder of your choosing. +* Run `git clone https://github.com/morpheus65535/bazarr.git` +* Run `pip install -r requirements.txt` to install dependencies. +* You can now start bazarr via `bazarr.py` to start bazarr. +* Open your browser and go to `http://localhost:6767/` \ No newline at end of file