diff --git a/docs/source/_static/python-installer-add-path.png b/docs/source/_static/python-installer-add-path.png
deleted file mode 100644
index 43388c2c..00000000
Binary files a/docs/source/_static/python-installer-add-path.png and /dev/null differ
diff --git a/docs/source/installation.rst b/docs/source/installation.rst
deleted file mode 100644
index 1073c7a7..00000000
--- a/docs/source/installation.rst
+++ /dev/null
@@ -1,102 +0,0 @@
-.. _installation:
-
-Installation
-============
-
-**Apio** is written in `Python `_ and
-works on Linux (+ARM), Mac OS X, Windows.
-
-.. contents::
-
-System requirements
--------------------
-
-:Operating System: Linux (+ARM), Mac OS X or Windows
-:Python Interpreter: Python 2.7, Python 3.5+
-
- .. attention::
- **Windows Users**: Please `Download the latest Python
- `_ and install it.
- **DON'T FORGET** to select ``Add python.exe to Path`` feature on the
- "Customize" stage, otherwise Python Package Manager ``pip`` command
- will not be available.
-
- .. image:: _static/python-installer-add-path.png
-
-:Terminal Application:
-
- All commands below should be executed in
- `Command-line `_
- application (Terminal). For Mac OS X and Linux OS - *Terminal* application,
- for Windows OS – ``cmd.exe`` application.
-
-:Access to Serial Ports (USB/UART):
-
- **Windows Users:** Please check that you have correctly installed USB driver from board manufacturer.
-
- **Linux Users:** Ubuntu/Debian users may need to add own "username" to the "dialout" group if they are not "root", doing this issuing a ``sudo usermod -a -G dialout $USER``.
-
-Install Apio
-------------
-
-The latest stable version of Apio may be installed or upgraded via
-Python Package Manager (`pip `_) as follows:
-
-.. code::
-
- $ pip install -U apio
-
-If ``pip`` command is not available run ``easy_install pip``.
-
-Note that you may run into permissions issues running these commands. You have
-a few options here:
-
-* Run with ``sudo`` to install Apio and dependencies globally
-* Specify the `pip install --user `_
- option to install local to your user
-* Run the command in a `virtualenv `_ local to a
- specific project working set.
-
-.. note::
-
- Debian users can also install the application and its packages by executing the following commands.
- (These packages may not be updated).
-
- .. code::
-
- $ curl -sSL http://fpgalibre.sf.net/debian/go | sudo sh
- $ sudo apt-get install apio
- $ sudo apt-get install apio-scons apio-icestorm apio-iverilog apio-examples apio-system
-
-.. _install_drivers:
-
-Install FTDI drivers
--------------------------
-
-For boards with a FTDI interface.
-
-.. code::
-
- $ apio drivers --ftdi-enable
-
-To revert the FTDI drivers configuration.
-
-.. code::
-
- $ apio drivers --ftdi-disable
-
-
-Install Serial drivers
--------------------------
-
-For boards with a Serial interface.
-
-.. code::
-
- $ apio drivers --serial-enable
-
-To revert the Serial drivers configuration.
-
-.. code::
-
- $ apio drivers --serial-disable