summaryrefslogtreecommitdiff
path: root/docs/install.rst
diff options
context:
space:
mode:
authorJean Jordaan <jean.jordaan@gmail.com>2019-03-03 13:29:21 +0700
committerGitHub <noreply@github.com>2019-03-03 13:29:21 +0700
commitaddaa090efb4d4beacb2bd2cc6dbdb7e158fa2a9 (patch)
treede3b532ed49a0d1e8a2e333b549b129d534bff91 /docs/install.rst
parentcd67a63b434c33430d8fd32d6d15027b42811d9d (diff)
parent79dc77de49b8375d616a6cabb4503feb990bb51d (diff)
downloadtablib-addaa090efb4d4beacb2bd2cc6dbdb7e158fa2a9.tar.gz
Merge branch 'master' into master
Diffstat (limited to 'docs/install.rst')
-rw-r--r--docs/install.rst31
1 files changed, 2 insertions, 29 deletions
diff --git a/docs/install.rst b/docs/install.rst
index 3f93f05..7246972 100644
--- a/docs/install.rst
+++ b/docs/install.rst
@@ -3,9 +3,7 @@
Installation
============
-This part of the documentation covers the installation of Tablib.
-The first step to using any software package is getting it properly installed.
-Please read this section carefully, or you may miss out on some nice :ref:`speed enhancements <speed-extensions>`.
+This part of the documentation covers the installation of Tablib. The first step to using any software package is getting it properly installed.
.. _installing:
@@ -21,7 +19,7 @@ Of course, the recommended way to install Tablib is with `pip <http://www.pip-in
.. code-block:: console
- $ pip install tablib
+ $ pip install tablib[pandas]
-------------------
@@ -51,31 +49,6 @@ To download the full source history from Git, see :ref:`Source Control <scm>`.
.. _zipball: http://github.com/kennethreitz/tablib/zipball/master
-.. _speed-extensions:
-
-Speed Extensions
-----------------
-
-.. versionadded:: 0.8.5
-
-Tablib is partially dependent on the **pyyaml**, **simplejson**, and **xlwt** modules.
-To reduce installation issues, fully integrated versions of all required libraries are included in Tablib.
-
-However, if performance is important to you (and it should be), you can install **pyyaml** with C extensions from PyPi.
-
-.. code-block:: console
-
- $ pip install PyYAML
-
-If you're using Python 2.5, you should also install the **simplejson** module (pip will do this for you).
-If you're using Python 2.6+, the built-in **json** module is already optimized and in use.
-
-.. code-block:: console
-
- $ pip install simplejson
-
-
-
.. _updates:
Staying Updated