87

I want to configure Pylint as an external tool in my entire project directory for a Python project that I'm working on. I've tried to use the repository as a module with __init__.py and without, and it's not working either way.

I'm having difficulty setting up Pylint to run with PyCharm. I know that I should be running it as an external tool, however the settings confuse me.

The authoritative source on their documentation is broken, so I can't check that up either.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Wasif Hyder
  • 1,089
  • 1
  • 9
  • 13

8 Answers8

143

You can set up Pylint to work with PyCharm by following the following steps:

  1. Install pylint:

     $ pip install pylint
    
  2. Locate your pylint installation folder:

     $ which pylint         # MacOS/Linux
     /usr/local/bin/pylint  # This is just a possible output - check yours
    
    <!-->
    
     $ where pylint         # Windows
     %LocalAppData%\Programs\Python\Python36-32\Scripts\pylint.exe  # Possible location
    
  3. Open the PyCharm settings window with menu FileSettings, then navigate to menu ToolsExternal Tools in the sidebar. (Or search "external tools")

    PyCharm External tools

  4. Set up an external tool by clicking on the + sign and filling in the fields accordingly. In Program use the path you got when running which pylint. For the other values, you can use the same from the image.

    PyCharm Edit Tool

  5. Run pylint from menu ToolsExternal Toolspylint:

    PyCharm External Tools

  6. Look at your output in the PyCharm terminal

    PyCharm terminal

For more details, refer to Pylinting with PyCharm.

If you want to use Pylint to check your whole project or a particular file or directory, you can right click on your project root, file or directory, then activate External Toolspylint as shown below.

PyCharm check entire project

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
lmiguelvargasf
  • 40,464
  • 32
  • 169
  • 172
  • @stevenVascellaro, you can check this [link](https://stackoverflow.com/questions/304319/is-there-an-equivalent-of-which-on-the-windows-command-line). Or you could find where `pylint` got installed in your machine. – lmiguelvargasf Mar 20 '18 at 18:45
  • 1
    Thanks. I've added instructions for Windows users. – Stevoisiak Mar 20 '18 at 18:53
  • @StevenVascellaro, thank you so much for your contribution! – lmiguelvargasf Mar 20 '18 at 18:54
  • While this answer works, it just writes the results to a text field. There is now a PyCharm plugin that does all that and also hooks into the IDE and highlights suspicious lines. It can be downloaded from the default repository. See one of the other answers for details. – JohnEye Dec 20 '18 at 16:17
  • I made every step that you described but I got warning message: No config file found, using default configuration. Then I created a resource file as in an answer : https://stackoverflow.com/questions/5253559/getting-pylint-warning-no-config-file-found-using-default-configuration. Now pylint is working good. – limonik Jan 17 '19 at 16:16
  • This works like a charm; just one question - Can we get a pylint score for each individual file via this method? Kind like a report – joel.wilson May 18 '20 at 08:24
  • @lmiguelvargasf : What are Program, Parameters & Working directory here ? Currently, I am executing as "python test.py --var1=xyz". How do I configure Program, Parameters & Working directory accordingly ? – StackGuru Sep 14 '20 at 12:14
30

Because I didn't find a working ready-made setup, these are the settings I use in PyCharm CE 2018.1 on macOS:

1 - pip install pylint in your project virtualenv or globally

2 - Add new external tool and configure:

Program: pylint
Arguments: "--msg-template='{abspath}:{line:5d},{column:2d}: {msg} ({symbol})'" --output-format=colorized "$FilePath$"
Working directory: $ProjectFileDir$
Output filters: $FILE_PATH$:\s*$LINE$\,\s*$COLUMN$:

Notice the required double quotes for the msg-template, and the escape chars for the output filters. The output filter allows to click on the file path and open the location in the IDE source editor.

Only missing feature would be the output filters to plot the lint descriptions directly into the source view, as is done with the builtin linter. No such feature at this time though.

pylint arguments

lkraider
  • 3,723
  • 1
  • 24
  • 28
14

You can try this Pylint PyCharm plugin:

Pylint PyCharm screenshot

It provides both real-time and on-demand scanning of Python files with Pylint from within PyCharm/IntelliJ IDEA.

Once you have it installed, the real-time inspection works automatically. For the on-demand you have several options that go from just checking the current open file to scan the entire project:

Enter image description here

(Just for the sake of transparency, I am the developer.)

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Roberto Leinardi
  • 4,505
  • 3
  • 38
  • 41
  • This looks good. Unfortunately it's throwing an exception on startup - it doesn't like the version of pylint installed in /usr/bin and isn't using pylint from the project's virtualenv. I'll keep checking for updates, because your plugin looks like it'll be the ideal solution :-) – Aaron F Oct 23 '18 at 08:21
  • Hi, if you haven't done it already, please open an issue [here](https://github.com/leinardi/pylint-pycharm/issues) attaching also the [idea.log](https://intellij-support.jetbrains.com/hc/en-us/articles/207241085-Locating-IDE-log-files) file. – Roberto Leinardi Oct 23 '18 at 10:26
  • I had a quick look and it seems to be a duplicate of #29. I'll add the relevant lines from my log to that issue. – Aaron F Oct 23 '18 at 11:27
  • @AaronF You would need to manually set the path of the pylint to the one installed on your virtualenv. eg.: projectvenv/bin/pylint instead of /usr/bin/pylint – Gautam Jain Dec 09 '18 at 09:19
  • Currently this plug in has some issues, see https://github.com/leinardi/pylint-pycharm/issues/76 – Charlie Apr 15 '21 at 15:04
13

I now use and recommend the PyCharm plugin which didn't exist when I first wrote this answer.**


A colleague pointed me towards pylint-pycharm on GitHub. It's a wrapper around Pylint with output formatted for PyCharm.

Here's how I set it up:

git clone https://github.com/perses76/pylint-pycharm.git
cd pylint-pycharm
python setup.py build

This creates build/scripts-2.7/pylint-pycharm

Then, in PyCharm, create a new External Tool with these settings:

Program: path to your installation of pylint-pycharm
Arguments: --virtualenv=$PyInterpreterDirectory$/.. $FileName$
Working directory: $FileDir$
Output filters: $FILE_PATH$\:$LINE$\:$COLUMN$\:.*

PyLint for PyCharm External Tool settings screenshot

Now run it from menu Tools* → External ToolsPyLintPyCharm. Each line of output will be hyperlinked to the relevant position in the source code.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Aaron F
  • 870
  • 9
  • 9
6

A note on the previous answers. I was searching for a method to make PyCharm aware of the output syntax so I can directly jump to the file locations. That works without using additional tools.

Pylint can be configured to output messages in a specific format using the msg-template option in the pylintrc file or the CLI option --msg-template.

I set it to: msg-template='{abspath}:{line}:{column}: {msg_id} {msg}'

In the External Tools settings, the Output filters: can be set to $FILE_PATH$:$LINE$:$COLUMN$: .* so PyCharm shows links to directly jump to the reported locations. This can be combined with output-format=colorized so I get this: enter image description here PyCharm does not recognize the column despite having it configured. But having the file and line is enough for me.

ub_marco
  • 95
  • 1
  • 4
  • See my answer regarding the correct output filter to detect the column as well: https://stackoverflow.com/a/50298934/324731 – lkraider May 11 '18 at 19:27
  • @lkraider I don't see the relevant difference. You're separating line and column by comma which I tried - it didn't work. Then you're escaping the colon which shouldn't be necessary. I tried your full solution for `msg-template` and `Output filters` but the column was not detected. Maybe something else is wrong, can you pinpoint the problem? I'm working with PyCharm 2018.1.2. – ub_marco May 14 '18 at 10:09
  • How are you testing the detection? Mine doesn't underline the line number like yours (nor the column), but clicking the link moves the caret to the correct position. – lkraider May 14 '18 at 23:55
  • I found the issue, indeed if the line number is shown with underline, the link will not work. This would happen in my example when the line is >99. When there is a space separation, the link will correctly place the caret at the column position. – lkraider May 15 '18 at 00:02
  • This used to work for me.... now I get "Windows cannot find 'file:///C:\Use...". – Dan Ciborowski - MSFT Sep 25 '20 at 22:57
3

At first install Pylint with pip:

pip install pylint

You have to open “SettingsToolsExternal Tools“ and press the “+” button at PyCharm.

Here are an example with good settings.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
ikreb
  • 1,210
  • 8
  • 20
  • 2
    I followed the example, but got an error while running. *Cannot run program "pylint" (in directory "/Users/RodChen/my_project"): error=2, No such file or directory.* I am sure the directory exists cause I use $FileDir$ as working directory. How can I fix it? Thx. – Rod Chen Jul 19 '16 at 06:30
  • I guess that you use windows. Does pylint work at the terminal? – ikreb Jul 20 '16 at 18:21
  • 2
    I use Mac. I only installed pylint in the virtual environment which I am working, and pylint is not working at the normal terminal. After I installed pylint in the system, pylint worked in PyCharm! Thank you! – Rod Chen Jul 21 '16 at 06:41
  • @RodChen I also have `pylint` install in a virtual environment. I've pointed PyCharm to my virtual environment's python interpreter and it *seems* to work fine. I'm very new to `pylint` though, so maybe you're referring to some particular functionality I'm not aware of. – Marc Oct 21 '17 at 19:22
3

Roberto Leinardi has created a Pylint plugin for PyCharm which really works and integrates well into the IDE:

Easy to install from the repositories, full instructions under:

pylint-pycharm

I have a short, yet a happy, experience with it so far! Kudos to Roberto.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
architectonic
  • 2,091
  • 1
  • 17
  • 30
1

Thanks to information here, and updated documentation from PyCharm, I've been able to get this to work nicely to also use the virtual environment for the project (ensuring that any packages can be deployed within the virtual environment and do not need to be deployed globally).

Taking what lkraider provided earlier, but with slight modifications:

  1. Ensure you install Pylint within the virtual environment. Note, make sure that when you created the virtual environment you did not select "Inherit global site-packages". If you do then Pylint will end up being globally and this will not work.

  2. Add a new external tool and configure. This is slightly different compared to what lkraider provided. For one I wanted it to look more like normal Pylint output, hence my msg-template (and Output filter) is a bit different. Each to their own. The second change is the more critical one for executing Pylint based on the virtual environment. That is the program parameter where I use $PyInterpreterDirectory$.

    Program: $PyInterpreterDirectory$/pylint
    Arguments: "--msg-template='{abspath}:{line:5d}:{column}: {msg_id}: {msg} ({symbol})'" --output-format=colorized "$FilePath$"
    Working directory: $ProjectFileDir$
    Output filters: $FILE_PATH$:\s*$LINE$\:\s*$COLUMN$:
    

External tool for Pylint

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Erik
  • 11
  • 2