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