install.rst 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .. _install:
  2. Installation
  3. ============
  4. This part of the documentation covers the installation of Tablib. The first step to using any software package is getting it properly installed.
  5. .. _installing:
  6. -----------------
  7. Installing Tablib
  8. -----------------
  9. Distribute & Pip
  10. ----------------
  11. Of course, the recommended way to install Tablib is with `pip <https://pip.pypa.io>`_:
  12. .. code-block:: console
  13. $ pip install tablib[pandas]
  14. -------------------
  15. Download the Source
  16. -------------------
  17. You can also install tablib from source.
  18. The latest release (|version|) is available from GitHub.
  19. * tarball_
  20. * zipball_
  21. .. _
  22. Once you have a copy of the source,
  23. you can embed it in your Python package,
  24. or install it into your site-packages easily.
  25. .. code-block:: console
  26. $ python setup.py install
  27. To download the full source history from Git, see :ref:`Source Control <scm>`.
  28. .. _tarball: https://github.com/jazzband/tablib/tarball/master
  29. .. _zipball: https://github.com/jazzband/tablib/zipball/master
  30. .. _updates:
  31. Staying Updated
  32. ---------------
  33. The latest version of Tablib will always be available here:
  34. * PyPI: https://pypi.org/project/tablib/
  35. * GitHub: https://github.com/jazzband/tablib/
  36. When a new version is available, upgrading is simple::
  37. $ pip install tablib --upgrade
  38. Now, go get a :ref:`Quick Start <quickstart>`.