-2

it gives me this error (Python was not found; run without arguments to install from the Microsoft Store, or disable this shortcut from Settings > Manage App Execution Aliases.) .

note that i have c/c++ on vscode and have been working with them , i wanted t install python and i dont know whats wrong

i tried to disable python from (Manage App Execution Aliases) and it didn't work , it was one of the solutions i saw

QTZ
  • 7

1 Answers1

-2

First you need to install python interpreter for your machine, then you also need to install python extension for vscode.

If you're on a MAC, you'll also need to change python to point to python3

echo "alias python=/usr/bin/python3" >> ~/.zshrc

Official start document: https://code.visualstudio.com/docs/python/python-tutorial

JialeDu
  • 6,021
  • 2
  • 5
  • 24