From 90f4c3831c40b8adf9f47681c9e9e8ba411944fb Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Wed, 28 Aug 2019 13:02:28 -0400 Subject: [PATCH] Created Installation MacOS (markdown) --- Installation-MacOS.md | 50 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Installation-MacOS.md diff --git a/Installation-MacOS.md b/Installation-MacOS.md new file mode 100644 index 0000000..e2e75e8 --- /dev/null +++ b/Installation-MacOS.md @@ -0,0 +1,50 @@ +## Running from Source on MacOS + +bazarr require Python 2.7.13 or greater (**system Python 2.7.10 or version 3.x not supported**) and can be run from source. This will use *git* as updater, so make sure that it's installed. + +How To Install Bazarr on Mac OS 10.14 in Terminal + +1. Install Homebrew +`ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null` + +2. Install pyenv +`brew install pyenv-virtualenv` + +3. Add Homebrew Directory To Path +`export PATH="/usr/local/bin:/usr/local/sbin:$PATH"` + +4. Install Python 2.7 +`brew install python@2` + +5. Add Python 2.7 Directory to Path +`export PATH="/usr/local/opt/python@2/libexec/bin:$PATH"` + +6. Install virtualenv +`pip install virtualenv` + +7. Create A Python 2.7 Virtual Environment +`virtualenv -p /usr/bin/python2.7 venv` + +8. Activate The Virtual Environment +`source venv/bin/activate` + +9. Change Directory To Applications +`cd Applications` + +10. Get Bazarr +`git clone https://github.com/morpheus65535/bazarr.git` + +11. Change Directory To bazarr +`cd bazarr` + +12. Install bazarr requirements +`pip install -r requirements.txt` + +13. Run bazarr +`Python bazarr.py` + +To Run bazarr in future, open Terminal, Repeat steps 8, 9, 11, 13. + +bazarr will run in this Terminal session. Closing session will stop bazarr. + +Access bazarr via browser at https://localhost:6767/ \ No newline at end of file