visual studio 2010 - python is not recognised -


i trying install pylint using vs code keep getting error code:

ps c:\users\alex> python -m pip install pylint python : term 'python' not recognized name of cmdlet, function, script file, or operable program. check spelling of name, or if path included, verify path correct , try again. @ line:1 char:1 + python -m pip install pylint + ~~~~~~ + categoryinfo          : objectnotfound: (python:string) [], commandnotfoundexception + fullyqualifiederrorid : commandnotfoundexception 

i running windows 10 64bit.

edit:

i tried using 'py' instead of 'python' , worked.

ps c:\users\alex> py -m pip install pylint

sol 1) in system path environment variable --> c:\python27;c:\python27\tools\scripts;

sol 2) run command line administrator


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -