I\'m trying Anaconda/Spyder after using the standard python installation/IDLE for several years. The console (and variable explorer) becomes progressively slower during each
As far as I've found out, the problem seems to be with the latest major release of the ipython kernel. Pinning the version of ipykernel to 4.10.0 solved it for me. To do so, add a line containing ipykernel 4.*
to the file ~/anaconda3/conda-meta/pinned
. Create the file if it does not exist yet. Then conda update ipykernel
which will actually downgrade to 4.10.0. Worked for me!