In Quickstart, update pip like everywhere else

This makes the **Quickstart** instructions for updating `pip` (`pip3`) consistent with the other documentation and code.
This commit is contained in:
Troy McConaghy 2016-08-05 13:33:17 +02:00 committed by GitHub
parent 011e840cf5
commit bbe8d7192e

View File

@ -15,16 +15,15 @@ sudo apt-get update
sudo apt-get install g++ python3-dev sudo apt-get install g++ python3-dev
``` ```
D. Get the latest version of pip, wheel and setuptools: D. Get the latest version of pip and setuptools:
```text ```text
sudo apt-get install python3-setuptools sudo apt-get install python3-pip
sudo easy_install3 pip sudo pip3 install --upgrade pip setuptools
pip3 install --upgrade pip wheel setuptools
``` ```
E. Install the `bigchaindb` Python package from PyPI: E. Install the `bigchaindb` Python package from PyPI:
```text ```text
sudo pip install bigchaindb sudo pip3 install bigchaindb
``` ```
F. Configure and run BigchainDB: F. Configure and run BigchainDB: