removing libffi-dev and libssl-dev from distro dependencies (only required for cryptography, which was removed)

(cherry picked from commit 11d1482790ac20983a5e7b5145b5487c70694e84)
This commit is contained in:
diminator 2016-04-22 12:50:05 +02:00
parent a6dd9dc1fd
commit 99b2dd2a61
No known key found for this signature in database
GPG Key ID: C3D8590E6D0D439A

View File

@ -31,13 +31,13 @@ BigchainDB Server has some OS-level dependencies. In particular, you need to ins
On Ubuntu 14.04, we found that the following was enough: On Ubuntu 14.04, we found that the following was enough:
```text ```text
$ sudo apt-get update $ sudo apt-get update
$ sudo apt-get install libffi-dev g++ libssl-dev python3-dev $ sudo apt-get install g++ python3-dev
``` ```
On Fedora 23, we found that the following was enough (tested in February 2015): On Fedora 23, we found that the following was enough (tested in February 2015):
```text ```text
$ sudo dnf update $ sudo dnf update
$ sudo dnf install libffi-devel gcc-c++ redhat-rpm-config python3-devel openssl-devel $ sudo dnf install gcc-c++ redhat-rpm-config python3-devel
``` ```
(If you're using a version of Fedora before version 22, you may have to use `yum` instead of `dnf`.) (If you're using a version of Fedora before version 22, you may have to use `yum` instead of `dnf`.)