diff --git a/docs/source/installing.md b/docs/source/installing.md index 9ff24298..3e38013f 100644 --- a/docs/source/installing.md +++ b/docs/source/installing.md @@ -27,12 +27,20 @@ If you don't already have it, then you should [install Python 3.4+](https://www. BigchainDB has some OS-level dependencies. In particular, you need to install the OS-level dependencies for the Python **cryptography** package. Instructions for installing those dependencies on your OS can be found in the [cryptography package documentation](https://cryptography.io/en/latest/installation/). -On Ubuntu 14.04, we found that the following was enough (YMMV): +On Ubuntu 14.04, we found that the following was enough: ```text $ sudo apt-get update $ sudo apt-get install libffi-dev g++ libssl-dev python3-dev ``` +On Fedora 23, we found that the following was enough (tested in February 2015): +```text +$ sudo dnf update +$ sudo dnf install libffi-devel gcc-c++ redhat-rpm-config python3-devel openssl-devel +``` + +(If you're using a version of Fedora before version 22, you may have to use `yum` instead of `dnf`.) + With OS-level dependencies installed, you can install BigchainDB with `pip` or from source. ### How to Install BigchainDB with `pip`