Merge pull request #276 from bigchaindb/suggest-updating-pip-etc-in-install-docs

Install docs: Suggest upgrading pip wheel & setuptools
This commit is contained in:
Troy McConaghy 2016-05-17 14:44:13 +02:00
commit 801e077519
2 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,7 @@ def install_base_software():
software-properties-common python-software-properties \
python3-setuptools ipython3 sysstat s3cmd')
sudo('easy_install3 pip')
sudo('pip install -U pip wheel setuptools')
sudo('pip install --upgrade pip wheel setuptools')
# Install RethinkDB

View File

@ -55,7 +55,9 @@ If it says that `pip` isn't installed, or it says `pip` is associated with a Pyt
```text
$ sudo apt-get install python3-setuptools
$ sudo easy_install3 pip
$ pip install --upgrade pip wheel setuptools
```
(Note: Using `sudo apt-get python3-pip` also installs a Python 3 version of `pip` (named `pip3`) but we found it installed a very old version and there were issues with updating it.)
Once you have a version of `pip` associated with Python 3.4+, then you can install BigchainDB Server (and officially-supported BigchainDB drivers) using: