Posts

Showing posts from August, 2017

FIXING “FAILED TO LAUNCH THE PYTHON PROCESS IN VSCODE(ERROR SPAWN PYTHON ENOENT)” ERROR AND ERROR INSTALLING PYLINT

Image
#note:this is not professional advise but an explanation of what worked for me as I could not find a solution online that helped me make sure you keep your previous settings recorded to go back if this does not work for you or creates more problems thanks  you Problem : failing to debug or execute python scripts in vscode Always bringing the error: “ ERROR SPAWN PYTHON ENOENT” And “ “ Failed to launch the Python Process, please validate the path 'python' My version on VSCODE: Version 1.14.2 shell 1.6.6 Node 7.4.0 Observation All this is actually a very very simple little misunderstanding by the computer as you will see lol With the different in python versions The call command for python varies in some versions in “py” and in some its “python” therefore if your version of VScode  mistakes your version by using “Python” instead of “py” when it want to execute python commands or code you will have such kind of errors For Example 1...