We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I understand there are similar bugs logged: #102, #99, and #89 where #89 is the most similar.
Since #89 is not recent, I dont this this log violates Step 1 a.
0.16.4
IDEA version: 2024.3 / Mac OS X / Sonoma 14.6.1 | Apple M1 Max Silicon
3.1.0
Install Pylint plugin from marketplace
Configure pylint to either the pyenv pylint installation, or the project venv/bin/pylint.
IDEA gives an error:
I have verified the executable, and it's path:
Plugin claims executable does not exist.
Expected to be able to configure and run Pylint on intellij
Below is the pylint script in pyenv.
#!/usr/bin/env bash set -e [ -n "$PYENV_DEBUG" ] && set -x program="${0##*/}" export PYENV_ROOT="/Users/dshaw/.pyenv" exec "/opt/homebrew/opt/pyenv/bin/pyenv" exec "$program" "$@"
Below is the pylint script in venv
#!/Users/dshaw/Documents/Projects/REDACTED/venv/bin/python3 # -*- coding: utf-8 -*- import re import sys from pylint import run_pylint if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(run_pylint())
No additional logging available
The text was updated successfully, but these errors were encountered:
Un-installing and reinstalling seems to have fixed the issue.. I'm closing.
Sorry, something went wrong.
No branches or pull requests
Step 1: Are you in the right place?
I understand there are similar bugs logged: #102, #99, and #89 where #89 is the most similar.
Since #89 is not recent, I dont this this log violates Step 1 a.
Step 2: Describe your environment
0.16.4
IDEA version: 2024.3 / Mac OS X / Sonoma 14.6.1 | Apple M1 Max Silicon
3.1.0
Step 3: Describe the problem:
Steps to reproduce:
Install Pylint plugin from marketplace
Configure pylint to either the pyenv pylint installation, or the project venv/bin/pylint.
IDEA gives an error:
I have verified the executable, and it's path:
Observed Results:
Plugin claims executable does not exist.
Expected Results:
Expected to be able to configure and run Pylint on intellij
Relevant Code:
Below is the pylint script in pyenv.
Below is the pylint script in venv
No additional logging available
The text was updated successfully, but these errors were encountered: