JCDOSAJ
JCDOSAJ

Reputation: 119

Debugging is not supported for python 2.5 or earlier?

enter image description here

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

Answers (2)

shrd
shrd

Reputation: 69

you need this :

enter image description here

change environnement to 3.6 or 3.7 (3.8 doesn't work in VS community 2017)

Upvotes: 1

Amibest
Amibest

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

Related Questions