Skip to content Skip to sidebar Skip to footer

Kernel Error After Updating To Spyder 4.1

I updated spyder to 4.1 in anaconda through (conda update spyder), and it doesn't work unless I open it from the anaconda prompt, otherwise it shows this error: An error ocurred

Solution 1:

(Spyder maintainer here) This problem is a duplicate of this issue and it is fixed in our 4.1.1, released in March 19th 2020.

Solution 2:

Rollback Spyder 4.0.1 in python 3.7 environment and that should do the trick.

Solution 3:

ACK, I have observed the same.

Another problems:

1) There is not possible to close the outline panel. 2) Profiler is unable to profile, for example, this program (something with i/o redirection):

defsum_of_harmonic_series(n):
    s = 0for k inrange(n, 0, -1):
        s += 1 / k
    return s

N = int(input("N: "))  # replace this line with N = 10000 as a workaround  print('sum = ', sum_of_harmonic_series(N))

Post a Comment for "Kernel Error After Updating To Spyder 4.1"