aboutsummaryrefslogtreecommitdiffstats
path: root/docs/installing
diff options
context:
space:
mode:
Diffstat (limited to 'docs/installing')
-rw-r--r--docs/installing/index.rst9
-rw-r--r--docs/installing/linux.rst9
-rw-r--r--docs/installing/macosx.rst32
-rw-r--r--docs/installing/windows.rst33
4 files changed, 0 insertions, 83 deletions
diff --git a/docs/installing/index.rst b/docs/installing/index.rst
deleted file mode 100644
index ab4211fd1..000000000
--- a/docs/installing/index.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-Installing PySide
-=================
-
-.. toctree::
- :maxdepth: 2
-
- windows.rst
- macosx.rst
- linux.rst
diff --git a/docs/installing/linux.rst b/docs/installing/linux.rst
deleted file mode 100644
index 2fefd7c42..000000000
--- a/docs/installing/linux.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. _installing_linux:
-
-Installing PySide on a Linux System
-===================================
-
-We do not provide binaries for Linux. Please read
-the build instructions in section
-`Building PySide on a Linux System
-<http://pyside.readthedocs.org/en/latest/building/linux.html>`_.
diff --git a/docs/installing/macosx.rst b/docs/installing/macosx.rst
deleted file mode 100644
index 214d52f9b..000000000
--- a/docs/installing/macosx.rst
+++ /dev/null
@@ -1,32 +0,0 @@
-.. _installing_macosx:
-
-Installing PySide on a Mac OS X System
-======================================
-
-Installing prerequisites
-------------------------
-
-Install latest ``pip`` distribution: download `get-pip.py
-<https://bootstrap.pypa.io/get-pip.py>`_ and run it using
-the ``python`` interpreter.
-
-You need to install or build Qt 4.8 first, see the `Qt Project Documentation
-<http://qt-project.org/doc/qt-4.8/install-mac.html>`_.
-
-Alternatively you can use `Homebrew <http://brew.sh/>`_ and install Qt with
-
-::
-
- $ brew install qt
-
-Installing PySide
------------------
-
-To install PySide on Mac OS X you can choose from the following options:
-
-#. Use pip to install the ``wheel`` binary packages:
-
- ::
-
- $ pip install -U PySide
-
diff --git a/docs/installing/windows.rst b/docs/installing/windows.rst
deleted file mode 100644
index 899e2e356..000000000
--- a/docs/installing/windows.rst
+++ /dev/null
@@ -1,33 +0,0 @@
-.. _installing_windows:
-
-Installing PySide on a Windows System
-=====================================
-
-Installing prerequisites
-------------------------
-
-Install latest ``pip`` distribution: download `get-pip.py
-<https://bootstrap.pypa.io/get-pip.py>`_ and run it using
-the ``python`` interpreter.
-
-Installing PySide
------------------
-
-To install PySide on Windows you can choose from the following options:
-
-#. Use pip to install the ``wheel`` binary packages:
-
- ::
-
- pip install -U PySide
-
-#. Use setuptools to install the ``egg`` binary packages (deprecated):
-
- ::
-
- easy_install -U PySide
-
-.. note::
-
- Provided binaries are without any other external dependencies.
- All required Qt libraries, development tools and examples are included.