From bbe8d7192e7eb879a5e04035e2f53e689a85fcc9 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Fri, 5 Aug 2016 13:33:17 +0200 Subject: [PATCH] In Quickstart, update pip like everywhere else This makes the **Quickstart** instructions for updating `pip` (`pip3`) consistent with the other documentation and code. --- docs/source/quickstart.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/source/quickstart.md b/docs/source/quickstart.md index 800013ca..2ed037f3 100644 --- a/docs/source/quickstart.md +++ b/docs/source/quickstart.md @@ -15,16 +15,15 @@ sudo apt-get update 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 -sudo apt-get install python3-setuptools -sudo easy_install3 pip -pip3 install --upgrade pip wheel setuptools +sudo apt-get install python3-pip +sudo pip3 install --upgrade pip setuptools ``` E. Install the `bigchaindb` Python package from PyPI: ```text -sudo pip install bigchaindb +sudo pip3 install bigchaindb ``` F. Configure and run BigchainDB: