blob: 7c5c99cb68a99fc033c52f3ff9e59b74eb959ca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
.. _installation:
Installation
------------
Python packages
'''''''''''''''
Pylint should be easily installable using pip.
.. code-block:: sh
python -m pip install pylint
Source distribution installation
''''''''''''''''''''''''''''''''
From the source distribution, extract the tarball, go to the extracted
directory and simply run ::
python setup.py install
Or you can install it in editable mode, using ::
python setup.py develop
|