From b7863254ed9a8b8884972cbccd957a1bd3fd9404 Mon Sep 17 00:00:00 2001
From: Holger Nahrstaedt <holger@nahrstaedt.de>
Date: Sat, 17 Feb 2018 21:23:10 +0100
Subject: [PATCH] fix install doc

---
 README.rst            | 8 ++++----
 docs/installation.rst | 9 +++++----
 2 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/README.rst b/README.rst
index b85abc73..a94cc4ac 100644
--- a/README.rst
+++ b/README.rst
@@ -40,12 +40,12 @@ For OSX, please do the following::
     export CFLAGS="-I$(brew --prefix openssl)/include $CFLAGS"
     export LDFLAGS="-L$(brew --prefix openssl)/lib $LDFLAGS"
     
-You can install steempy from this repository if you want the latest
-but possibly non-compiling version::
+Install steempy by pip::
 
-    pip install -U git+git://github.com/holgern/steempy
+    pip install -U steempy
     
-or by::
+You can install steempy from this repository if you want the latest
+but possibly non-compiling version::
 
     git clone https://github.com/holgern/steempy.git
     cd steempy
diff --git a/docs/installation.rst b/docs/installation.rst
index 15c2acf7..833b109f 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -5,18 +5,18 @@ Installation
 Installation
 ############
 
-Install with `pip`:
+Install with `pip3`:
 
 ::
 
     $ sudo apt-get install libffi-dev libssl-dev python-dev
     $ pip3 install steempy
 
-or the newest git version:
+or the with `pip`:
 
 ::
 
-    $ pip install -U git+git://github.com/holgern/steempy
+    $ pip install -U steempy
 
 Manual installation:
 
@@ -24,7 +24,8 @@ Manual installation:
 
     $ git clone https://github.com/holgern/steempy/
     $ cd steempy
-    $ python3 setup.py install --user
+    $ python setup.py build
+    $ python setup.py install --user
 
 Upgrade
 #######
-- 
GitLab