Reputation: 1
I'm getting two simultaneous error messages one in the console (1) the other as a popup on the de-bugger icon on the left side-bar (2):
No Python at 'C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python39_64\python.exe'
Connection to Python debugger failed Socket closed
The programs I ran were one's I wrote before and run on Anaconda's IDLE
Solutions I've tried:
Upvotes: 0
Views: 77
Reputation: 1
I created a new env using Anaconda in Pycharm that fixed it. I think it first used the Visual studio file for my last enviroment and when i uninstalled VS it took the program file the env was using with it.
Upvotes: 0
Reputation: 50
reinstall python from https://www.python.org/downloads/
install it and delete your venv folder and recreate it using the new installed python.
Upvotes: 0