I am pretty new to python and currenty I am trying to use pylint for checking code quality. I am getting a problem. My pylint doesn\'t point to virtualenv python interpreter
The issue has been solved on chat (link in comments).
The problem lied in using sudo yum install pylint
, because it installed pylint in the global env. The solution was to use the following command:
pip install -i http://f.pypi.python.org/simple pylint
Note the -i
usage as the regular index seemed to be broken for the asker.