mirror of
https://github.com/morpheus65535/bazarr
synced 2025-03-11 06:32:52 +00:00
Created Installation - Running from Source (markdown)
commit
6028cedde6
1 changed files with 34 additions and 0 deletions
34
Installation---Running-from-Source.md
Normal file
34
Installation---Running-from-Source.md
Normal file
|
@ -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/`
|
Loading…
Add table
Reference in a new issue