is it possible to install SonarQube on PyCharm?

Viewed 28

From this answer, I understand that SonarLint lives in the IDE. And I have installed it as well in my PyCharm, but I have been asked to install SonarQube on PyCharm. On the python interpreter (in PyCharm), I'm seeing packages like, sonarqube-py, sonarqube_api, python-sonarqube-api, opn-sonarqibe-api. I wonder what are these? I wanted to ask if it's possible to install SQ on PyCharm. I have tried google search but I think there are not many results. If it's not possible then what will I have to do to run SonarQube?

1 Answers

SonarQube is a separate application, and SonarLint is a plugin for IDE that needs to connect to SonarQube. So I don't think installing SonarQube in your IDE makes sense. But in your SonarLint configuration in PyCharm you'll need to provide the SonarQube URL.

Related