Update README.md

This commit is contained in:
abraunegg 2018-06-27 06:10:25 +10:00 committed by GitHub
parent 54fcb63886
commit 669c370248
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,13 +27,25 @@ sudo apt install libsqlite3-dev
curl -fsS https://dlang.org/install.sh | bash -s dmd
```
### Dependencies: Fedora/CentOS
### Dependencies: Fedora < Version 18 / CentOS 6.x / RHEL 6.x
```sh
sudo yum install libcurl-devel
sudo yum install sqlite-devel
curl -fsS https://dlang.org/install.sh | bash -s dmd
```
### Dependencies: Fedora > Version 18 / CentOS 7.x / RHEL 7.x
```sh
sudo dnf install libcurl-devel
sudo dnf install sqlite-devel
curl -fsS https://dlang.org/install.sh | bash -s dmd
```
Alternatively, if you are on a 64 bit system, you may also use the LLVM D Compiler (LDC):
```
sudo dnf install ldc
```
### Dependencies: Arch Linux
```sh
sudo pacman -S curl sqlite dmd