Linter pylint is not installed
See original GitHub issueEnvironment data
VS Code version: 1.18.1 x64 Python Extension version: 0.8.0 Python Version: 3.6.3 OS and version: Win7 SP1 x64
Actual behavior
Launch VSCode Python project, Show “Linter pylint is not installed”, but I have already installed pylint. Press “Install pylint” button, show “Requirement already satisfied” Reinstall pylint can not fix this. (Uninstall and install again, still fail.)
Expected behavior
Detect pylint correct.
Steps to reproduce:
- As was mentioned above
Logs
Output from Python
output panel
Output from Console window
(Help->Developer Tools menu)
E:\GitHub\script>C:\Python36\python.exe -m pip install pylint
Requirement already satisfied: pylint in c:\python36\lib\site-packages
Requirement already satisfied: colorama; sys_platform == "win32" in c:\python36\lib\site-packages (from pylint)
Requirement already satisfied: isort>=4.2.5 in c:\python36\lib\site-packages (from pylint)
Requirement already satisfied: six in c:\python36\lib\site-packages (from pylint)
Requirement already satisfied: mccabe in c:\python36\lib\site-packages (from pylint)
Requirement already satisfied: astroid>=1.5.1 in c:\python36\lib\site-packages (from pylint)
Requirement already satisfied: lazy-object-proxy in c:\python36\lib\site-packages (from astroid>=1.5.1->pylint)
Requirement already satisfied: wrapt in c:\python36\lib\site-packages (from astroid>=1.5.1->pylint)
Issue Analytics
- State:
- Created 6 years ago
- Reactions:5
- Comments:5
Top Results From Across the Web
Error message "Linter pylint is not installed" - Stack Overflow
Check the path Pylint has been installed to, by typing which pylint on your terminal. You will get something like: /usr/local/bin/pylint.
Read more >Linter pylint is not installed - but it is · Issue #12507 - GitHub
I am new to python, and therefore these are the exact steps I took: Install python 3.8.3-amd64.exe from scratch, but to a directory...
Read more >Linter pylint is not installed - Intellipaat Community
Steps to install pylint-. 1. Open a command prompt or terminal(For windows,navigate to install location). 2. Run: python-m pip install pylint.
Read more >Linting Python in Visual Studio Code
The linter has not been installed in the current Python environment. Open a command prompt, navigate to the location where your selecter interpreter...
Read more >Unable to Install Pylint - Python - Code with Mosh Forum
As I am never prompted to install pylint, I have no idea how to install it. It would be great if someone could...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Issue fixed. As above discussed, python output log end with
No module named 'wrapt.wrappers'
. Then I tried to reinstallwrapt
and got a error:This issue was discussed here https://github.com/GrahamDumpleton/wrapt/issues/112 . The failure is in pip/compat/init.py file:
Since Windows console’s default encode format is GBK,
sys.__stdout__
failed.My solution is run
pip install wrapt
underGit Bash for Windows(MSYS, MinGW) console
, which encode format is UTF-8 default.Now everything is fine! Let’s check VSCode again.
Looks like you have an issue with the installation of pylint (see the error message
ModuleNotFoundError: No module named 'wrapt.wrappers'
).Please try re-installing pylint and testing pylint from the command line. Closing as this is not an issue with the extension. Creating a separate issue that will ensure the right error message is displayed instead of ‘Linter pylint is not installed’
New issue to track incorrect error message https://github.com/Microsoft/vscode-python/issues/295