Created Installation - Running from Source (markdown)

morpheus65535 2018-01-10 15:19:46 -05:00
commit 6028cedde6
1 changed files with 34 additions and 0 deletions

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