Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'pylint' is not recognized as an internal or external command, operable program or batch file

I am on Windows 10.

I installed the "pylint" package with the command pip install pylint --user and it successfully got installed.

But when I try to run the command in command prompt,I am getting the 'pylint' is not recognized as an internal or external command, operable program or batch file. I checked the path and it is installed with all the other python packages.How do I solve this?

like image 221
RakeshP-0304 Avatar asked Dec 23 '22 17:12

RakeshP-0304


1 Answers

The following command worked for me:

py -m pylint file.py
like image 170
Kassandra Tafolla Avatar answered Dec 31 '22 14:12

Kassandra Tafolla