skip to Main Content

Few days ago I uninstalled and then reinstalled python due to some error related to pip . Since then whenever I start my pc it shows python modify setup window 2 or 3 times you can see popup here

Though I can close these windows ; Whenever I open vs code it can be upwards of 10 pop-ups . What’s bizarre about this is that I already have my VS Code set up properly . How do I prevent these annoying pop-ups?

2

Answers


  1. I think you set python’s installer as vscode’s python interpreter.

    Ctrl+Shift+P open the command palette and search for Python:Select Interpreter, select the correct interpreter.

    enter image description here

    python.exe. instead of the python installer (such as python-3.10.4-amd64.exe)

    Login or Signup to reply.
  2. 1. Install python

    Get Windows Installer for python version you need from official
    site

    During installation pay attention to the "Customize install location"
    install location

    2. Select correct interpreteter

    Press Ctrl+Alt+S and go to -> Project : Project Name -> Python Interpreter -> Add Interpreter -> System Intepreter ->

    Choose python.exe file from installation directory

    Now you’re fine 😀

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