Merge pull request #186 from maximesrd/patch-2

Update INSTALL.md
This commit is contained in:
Baptiste Gelez 2018-09-02 16:59:38 +01:00 committed by GitHub
commit 7b6e4908ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,10 +6,11 @@ In order to be installed and to work correctly, Plume needs:
- *Git* (to get the code) - *Git* (to get the code)
- *Curl* (for RustUp, the Rust installer) - *Curl* (for RustUp, the Rust installer)
- *GCC* (to compile C dependencies) - *GCC* and *make* (to compile C dependencies)
- *PostgreSQL* (for the database) - *PostgreSQL* (for the database)
- *GetText* (to manage translations) - *GetText* (to manage translations)
- *Rust* and *Cargo* (to build the code) - *Rust* and *Cargo* (to build the code)
- *OpenSSL* and *OpenSSL librairies* (for security)
All the following instructions will need a terminal. All the following instructions will need a terminal.
@ -20,14 +21,14 @@ On **Debian**:
```bash ```bash
apt update apt update
apt install gettext postgresql postgresql-contrib libpq-dev git apt install gettext postgresql postgresql-contrib libpq-dev git curl gcc make openssl libssl-dev
``` ```
On **Fedora**, **CentOS** or **RHEL**: On **Fedora**, **CentOS** or **RHEL**:
```bash ```bash
dnf install postgresql-server postgresql-contrib mariadb-devel libsq3-devel libpqxx libpqxx-devel dnf install postgresql-server postgresql-contrib mariadb-devel libsq3-devel libpqxx libpqxx-devel git curl gcc make openssl openssl-devel
# TODO: GetText + Git install # TODO: GetText
``` ```
On **Gentoo**: On **Gentoo**: