Reputation: 119
I keep getting this error in visual studios. There are currently no documentation that I can find that solves this error. Im using Pythong 3.7. Also, I get this same error when I try to debug a Django web application as well as a just regular python web application. I have also tested with Google Chrome, Internet Explorer, and Firefox, all of which give me the same error. The configuration is set up for 3.7
Upvotes: 6
Views: 10757
Reputation: 69
you need this :
change environnement to 3.6 or 3.7 (3.8 doesn't work in VS community 2017)
Upvotes: 1
Reputation: 687
Your version of Visual studio doesn't support your current version of Python. Try either to update your Visual Studio or change the python version in your environment configuration to a previous one (e.g 3.6).
Upvotes: 3