Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
xlrd / docs / installation.rst
Size: Mime:
Installation Instructions
=========================

If you want to experiment with xlrd, the easiest way to
install it is to do the following in a virtualenv::

  pip install xlrd

If your package uses setuptools and you decide to use xlrd,
then you should add it as a requirement by adding an ``install_requires``
parameter in your call to ``setup`` as follows:

.. code-block:: python

    setup(
        # other stuff here
        install_requires=['xlrd'],
        )