]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/dependencies.md
fix first sudo command (#337)
[github/Chocobozzz/PeerTube.git] / support / doc / dependencies.md
CommitLineData
afe81767 1# Dependencies
63bfad7e 2
e5203ffa 3## Debian / Ubuntu and derivatives
93d15753 4 1. On a fresh Debian, as root user, install basic utility programs needed for the installation
bc2fc1a7
F
5
6```
93d15753 7$ apt-get install curl sudo unzip vim
bc2fc1a7 8```
93d15753
F
9
10 2. It would be wise to disable root access and to continue this tutorial with a user with sudoers group access
63bfad7e 11
93d15753 12 3. Install certbot (choose instructions for nginx and your distribution) :
bc2fc1a7 13 [https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions)
93d15753 14 4. Install NodeJS 8.x (current LTS):
63bfad7e 15 [https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions)
93d15753 16 5. Install yarn:
053ad3a3 17 [https://yarnpkg.com/en/docs/install#linux-tab](https://yarnpkg.com/en/docs/install#linux-tab)
93d15753 18 6. Run:
63bfad7e 19
afe81767 20```
e5203ffa 21$ sudo apt update
07fa4c97 22$ sudo apt install nginx ffmpeg postgresql openssl g++ make redis-server git
63bfad7e
C
23```
24
afe81767 25## Arch Linux
63bfad7e
C
26
27 1. Run:
28
afe81767 29```
4a31886e 30$ sudo pacman -S nodejs yarn ffmpeg postgresql openssl redis git wget unzip python2 base-devel npm nginx
63bfad7e
C
31```
32
053ad3a3
EC
33## CentOS 7
34
35 1. Install NodeJS 8.x (current LTS):
36 [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora)
37 2. Install yarn:
38 [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install)
39 3. Install or compile ffmpeg:
40 * Install - [https://www.webfoobar.com/index.php/node/17](https://www.webfoobar.com/index.php/node/17)
41 * Compile - [https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh](https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh)
42 4. Run:
43
44```
45$ sudo yum update
46$ sudo yum install epel-release
47$ sudo yum update
07fa4c97 48$ sudo yum install nginx postgresql postgresql-server openssl gcc make redis git
053ad3a3
EC
49```
50
afe81767 51## Other distributions
63bfad7e
C
52
53Feel free to update this file in a pull request!
54