]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/dependencies.md
Merge pull request #941 from rigelk/cli-wrapper
[github/Chocobozzz/PeerTube.git] / support / doc / dependencies.md
CommitLineData
afe81767 1# Dependencies
63bfad7e 2
e5203ffa 3## Debian / Ubuntu and derivatives
99402413 4 1. On a fresh Debian/Ubuntu, as root user, install basic utility programs needed for the installation
955f14a4 5
bc2fc1a7 6```
99402413 7# apt-get install curl sudo unzip vim
bc2fc1a7 8```
955f14a4 9
93d15753 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)
8b1c6944 16 5. Install yarn, and be sure to have a recent version (>= 1.5.1, the latest release):
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
469b2908 22$ sudo apt install nginx ffmpeg postgresql postgresql-contrib openssl g++ make redis-server git
955f14a4 23$ ffmpeg -version # Should be >= 3.x
44a9a76e 24$ g++ -v # Should be >= 5.x
63bfad7e
C
25```
26
30274d67 27If you still have a 2.x version of FFmpeg on Ubuntu:
955f14a4
MB
28```
29$ sudo add-apt-repository ppa:jonathonf/ffmpeg-3
30$ sudo apt-get update
31$ sudo apt install ffmpeg
32```
33
afe81767 34## Arch Linux
63bfad7e
C
35
36 1. Run:
37
afe81767 38```
e10c7d51 39$ sudo pacman -S nodejs yarn ffmpeg postgresql openssl redis git wget unzip python2 base-devel npm nginx
63bfad7e
C
40```
41
053ad3a3
EC
42## CentOS 7
43
44 1. Install NodeJS 8.x (current LTS):
45 [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora)
46 2. Install yarn:
47 [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install)
48 3. Install or compile ffmpeg:
0414ed10 49 * Install - [https://linoxide.com/linux-how-to/install-ffmpeg-centos-7/](https://linoxide.com/linux-how-to/install-ffmpeg-centos-7/)
053ad3a3
EC
50 * Compile - [https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh](https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh)
51 4. Run:
52
53```
54$ sudo yum update
0414ed10 55$ sudo yum install epel-release centos-release-scl
053ad3a3 56$ sudo yum update
469b2908 57$ sudo yum install nginx postgresql postgresql-server postgresql-contrib openssl gcc-c++ make redis git devtoolset-7
0414ed10
O
58```
59
d4557fd3 60 5. You need to use a more up to date version of G++ in order to run the yarn install command, hence the installation of devtoolset-7.
4c86a254 61```
80d7cf3a 62$ sudo scl enable devtoolset-7 bash
053ad3a3
EC
63```
64
d4557fd3
RK
65Later when you invoke any node command, please prefix them with `CC=/opt/rh/devtoolset-7/root/usr/bin/gcc CXX=/opt/rh/devtoolset-7/root/usr/bin/g++`, such as with:
66
67```
68$ sudo -H -u peertube CC=/opt/rh/devtoolset-7/root/usr/bin/gcc CXX=/opt/rh/devtoolset-7/root/usr/bin/g++ yarn install --production --pure-lockfile
69```
70
4c86a254
GN
71## FreeBSD
72
73On a fresh install of [FreeBSD](https://www.freebsd.org), new system or new jail:
74
dea65ef2 75 1. bootstrap pkg, initialize db and install peertube's dependencies, always as root (sudo not yet installed):
4c86a254
GN
76```
77# pkg
78# pkg update
2987c3d7 79# pkg install -y sudo bash wget git python nginx pkgconf vips postgresql96-server postgresql96-contrib redis openssl node npm yarn ffmpeg unzip
4c86a254
GN
80```
81
dea65ef2 82 2. Allow users in the wheel group (hope you don't forgot to add your user on wheel group!) to use sudo
4c86a254
GN
83```
84# visudo
85```
86
6b48f04e 87 Uncomment the line 90
4c86a254
GN
88```
89%wheel ALL=(ALL) ALL
90```
91
dea65ef2 92 3. Enable nginx, redis, postgresql services and initialize database
4c86a254 93
4c86a254 94```
af5262f1 95# sysrc postgresql_enable="YES"
96# sysrc redis_enable="YES"
97# sysrc nginx_enable="YES"
4c86a254
GN
98```
99
6b48f04e 100 Initialize database and start services
4c86a254
GN
101```
102# service postgresql initdb
103# service postgresql start
104# service redis start
105# service nginx start
106```
107
2f7ac618 108## macOS
109* Add the packages:
110
111 ```
112 brew install ffmpeg nginx postgresql openssl gcc make redis git yarn
113 ```
114* Run the services:
115
116 ```
117 brew services run postgresql
118 brew services run redis
119 ```
396f224b
HM
120
121## Gentoo
122
123* Add this to ``/etc/portage/sets/peertube``:
124```
125net-libs/nodejs
126sys-apps/yarn
127media-video/ffmpeg[x264] # Optionnally add vorbis,vpx
128dev-db/postgresql
129dev-db/redis
130dev-vcs/git
131app-arch/unzip
132dev-lang/python:2.7
133www-servers/nginx
134media-libs/vips[jpeg,png,exif]
135
136# Optionnal, client for Let’s Encrypt:
137# app-crypt/certbot
138# app-crypt/certbot-nginx
139```
140
141* Compile the peertube set:
142```
143emerge -a @peertube
144```
145
146* Initialize the PostgreSQL database if you just merged it:
147```
148emerge --config postgresql
149```
150
151* (For OpenRC) Enable and then start the services (replace with the correct PostgreSQL slot):
152```
153rc-update add redis
154rc-update add postgresql-10
155rc-service redis start
156rc-service postgresql-10 start
157```
2f7ac618 158
afe81767 159## Other distributions
63bfad7e
C
160
161Feel free to update this file in a pull request!