diff --git a/README.rst b/README.rst
index b85abc7396c28604eb6602d1a0ec6b91345ac643..a94cc4ac92696aa3c689d38d0c8013dc88fd8a05 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 15c2acf79bb95e7c1ccb7323b23f8a5c8e4acda6..833b109ffbee89a79fa088f388df4db33d5cd5af 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
 #######