docs: install dependencies on Debian

This commit is contained in:
Frank Taillandier 2018-09-21 10:30:58 +02:00
parent 47ec61f9b5
commit 879a4c44f6
No known key found for this signature in database
GPG Key ID: E73258E3F50AEB7E
1 changed files with 11 additions and 3 deletions

View File

@ -2,10 +2,18 @@
title: Jekyll on Linux title: Jekyll on Linux
permalink: /docs/installation/other-linux/ permalink: /docs/installation/other-linux/
--- ---
Installation on other Linux distributions works similarly as on Ubuntu. Installation on other Linux distributions works similarly as on [Ubuntu](ubuntu.html).
On Fedora, the dependencies can be installed as follows, and the rest
works the same as on Ubuntu. On Fedora, the dependencies can be installed as follows:
```sh ```sh
sudo dnf install ruby ruby-devel @development-tools sudo dnf install ruby ruby-devel @development-tools
``` ```
On Debian:
```sh
sudo apt-get install ruby-full build-essential
```
The rest works the same as on [Ubuntu](ubuntu.html).