05 April 2015

install

  1. debian

     $ sudo apt-get install pylint
    
  2. fedora

     $ sudo yum install pylint
    
  3. opensuse

     $ sudo zypper install pylint # python2.7
     $ sudo zypper install python3-pylint
    
  4. freebsd

     $ pip install pylint
    
  5. arch linux

     $ pacman -S python2-pylint # if you live in the past
     $ pacman -S python-pylint  # if you line in the future
    
  6. windows

     $ pip install pylint # see note
    
  7. from source

     $ hg clone https://bitbucket.org/logilab/pylint/
     $ hg clone https://bitbucket.org/logilab/astroid
     $ mkdir logilab && touch logilab/__init__.py
     $ hg clone http://hg.logilab.org/logilab/common logilab/common
    


blog comments powered by Disqus