Updated Install (markdown)

Harvey Tindall 2020-04-15 11:00:07 +01:00
parent b50899d4dd
commit aa5257c2c0

@ -1,16 +1,17 @@
## Debian ## Debian
First, ensure all the necessary dependencies are installed. First, ensure all the necessary dependencies are installed.
`hrfee@lab:~$ sudo apt-get install libsasl2-dev python3-dev libldap2-dev libssl-dev` `hrfee@lab:~$ sudo apt-get install libsasl2-dev python3-dev python3-pip libldap2-dev libssl-dev`
Next, acquire the software. Next, acquire the software.
`hrfee@lab:~$ git clone https://github.com/hrfee/jellyfin-accounts.git` `hrfee@lab:~$ git clone https://github.com/hrfee/jellyfin-accounts.git`
Then enter the directory and run the install. Then enter the directory, grab python dependencies and run the install.
``` ```
hrfee@lab:~$ cd jellyfin-accounts hrfee@lab:~$ cd jellyfin-accounts
hrfee@lab:~/jellyfin-accounts# pip3 install -r requirements.txt
hrfee@lab:~$ python3 setup.py install hrfee@lab:~$ python3 setup.py install
``` ```