skip to Main Content

I’m having problems with installing python3.10 on visual code!

screenshot

need help ! thank you

2

Answers


  1. Try going to extensions on the left side of VScode, and downloading python from there.

    If you don’t see an extensions section, go to the bottom left and click settings -> extensions. Then search for python and install.

    Login or Signup to reply.
  2. You have installed python3.10 in the Microsoft store, and the python interpreter version of your current workspace is displayed in the lower right corner of vscode.

    enter image description here

    As for your pip command, you should open the path containing the requirement.txt file in a terminal, or indicate the path to the requirement.txt in the command. This way you won’t get a file not found error.

    You should open your project folder with vscode and start writing python code. Again before that you also need to install the Python extension. It is recommended that you start with the official documentation, it will be easier to get started.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search