pylint doesn't point to virtualenv python

后端 未结 10 1809
执笔经年
执笔经年 2021-01-07 19:19

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

10条回答
  •  不要未来只要你来
    2021-01-07 19:41

    You can get there by calling the target python interpreter:

    ./env/bin/python -m pylint ...
    
    # or in an already active env
    python -m pylint ...
    

提交回复
热议问题