0

I have problems to set the Python environment in Windows 10. The default path of Python installation is C:\Users\<user>\AppData\Local\Programs\Python\Python38-32\python.exe

But when I run in CMD or PowerShell does not locate the Python command. Any idea?

vonPryz
  • 22,996
  • 7
  • 54
  • 65
Christian Prada
  • 29
  • 1
  • 1
  • 3

1 Answers1

1

you need to add your python installation path to environmental variables where you can find systems path variable u can add ur location followed by ';' and path of your installation.

or simply open python ide then follow this code.

import sys
print(sys.path) #see if u can find ur installation location path in the output if not
sys.path.append('enter your installation path here')

enjoy!! hope it solved your question.