Kernel error after updating to Spyder 4.1

后端 未结 3 1074
鱼传尺愫
鱼传尺愫 2020-11-30 15:51

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:

A

3条回答
  •  隐瞒了意图╮
    2020-11-30 16:19

    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):

    def sum_of_harmonic_series(n):
        s = 0
        for k in range(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))
    

提交回复
热议问题