mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-28 08:35:53 +00:00
Created Installation MacOS (markdown)
parent
1863dcc28a
commit
90f4c3831c
1 changed files with 50 additions and 0 deletions
50
Installation-MacOS.md
Normal file
50
Installation-MacOS.md
Normal file
|
@ -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/
|
Loading…
Reference in a new issue