third_party.pylibs.pylint.src/doc/user_guide/installation.rst

29 lines
447 B
ReStructuredText
Raw Normal View History

.. _installation:
2013-04-06 19:45:15 +00:00
Installation
------------
2013-04-29 13:31:03 +00:00
Python packages
'''''''''''''''
Pylint should be easily installable using pip.
.. code-block:: sh
2018-06-04 17:06:58 +00:00
pip install pylint
2013-04-29 13:31:03 +00:00
2013-04-06 19:45:15 +00:00
Source distribution installation
''''''''''''''''''''''''''''''''
2013-04-29 13:31:03 +00:00
From the source distribution, extract the tarball, go to the extracted
directory and simply run ::
2013-04-06 19:45:15 +00:00
python setup.py install
Or you can install it in editable mode, using ::
2013-04-06 19:45:15 +00:00
python setup.py develop
2013-04-06 19:45:15 +00:00