Merge pull request #1682 from bigchaindb/fix-deps-server-quickstart

Keep minimal number of os-level deps for server quickstart
This commit is contained in:
Ahmed Muawia Khan 2017-07-21 14:57:09 +02:00 committed by GitHub
commit f72a35ff11
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ BigchainDB Server has some OS-level dependencies that must be installed.
On Ubuntu 16.04, we found that the following was enough:
```text
sudo apt-get update
sudo apt-get install g++ python3-dev libffi-dev build-essential libssl-dev
sudo apt-get install libffi-dev libssl-dev
```
On Fedora 2325, we found that the following was enough:

View File

@ -24,7 +24,7 @@ $ sudo mongod --replSet=bigchain-rs
E. Ubuntu 16.04 already has Python 3.5, so you don't need to install it, but you do need to install some other things:
```text
$ sudo apt-get update
$ sudo apt-get install g++ python3-dev libffi-dev build-essential libssl-dev
$ sudo apt-get install libffi-dev libssl-dev
```
F. Get the latest version of pip and setuptools: