I have installed Python 3.8 & Spyder 4.2.5 on Windows 10 machine. I have changed the Python Interpreter from default to 3.8. After making these changes , iPython console is showing the following error
Your Python environment or installation doesn't have the spyder‑kernels module or the right version of it installed (>= 1.10.0 and < 1.11.0)). Without this module is not possible for Spyder to create a console for you.
You can install it by running in a system terminal:
conda install spyder‑kernels or pip install spyder‑kernels
So, i have closed the Spyder IDE, executed the commands for installing spyder-kernels and restarted the Spyder but still i am getting the same error. Please check the image below
Can you please suggest a solution on how to fix the error?

condaorpip? Is your Python installation the same that you installed Spyder to?pip install spyder-kernels==1.10.0). Important point here is to make sure you install to the correct env. Side note: you might want to have a look at pyenv-win to manage your Python environments; I find that tool pretty nice.