Reputation: 11
I'm not trying to update Spyder version, but rather the Python version inside of Spyder.
I've tried conda update spyder
and conda update conda
Upvotes: 0
Views: 1009
Reputation: 41
You can update Spyder by closing it first, then opening the Anaconda Prompt and running the following commands there
conda update anaconda
conda install spyder=5.3.3
If you get errors while doing that or it takes too much time, you need to run
conda remove spyder
conda install spyder
Upvotes: 1