mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Merge pull request #101 from bigchaindb/feat/23/list-fedora-dependencies-in-docs
Docs: note OS-level dependencies on Fedora
This commit is contained in:
commit
cf2d94db13
@ -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/).
|
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
|
```text
|
||||||
$ sudo apt-get update
|
$ sudo apt-get update
|
||||||
$ sudo apt-get install libffi-dev g++ libssl-dev python3-dev
|
$ 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.
|
With OS-level dependencies installed, you can install BigchainDB with `pip` or from source.
|
||||||
|
|
||||||
### How to Install BigchainDB with `pip`
|
### How to Install BigchainDB with `pip`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user