Reputation: 11
Spyder (4.1) does not work anymore with python 2.7 in Anaconda environnement. When I launch spyder it does not open and I do not have any message.
If I launch spyder with python 3.8 it works.
What can I do?
Upvotes: 1
Views: 337
Reputation: 293
Python 2 has officially been retired as one can see in PEP 373
, but if it is necessary to use python 2 you could try using an older version of the spyder package. If you wish to use your code in the long-term it is highly advised to migrate necessary to python 3. I hope this helped
Upvotes: 0