traitlets.traitlets.TraitError in Pycharm

后端 未结 4 512
醉话见心
醉话见心 2021-02-07 09:33

I am a beginner in python. I am facing the following problem.

Whenever I start pycharm Community edition (version 5.0.3), the Python console fails to starts and shows th

4条回答
  •  情深已故
    2021-02-07 10:11

    I initially tried unsuccessfully by trying

    pip install -U ipython
    

    But then tried following and it worked:

    pip uninstall ipython[all]
    pip uninstall traitlets
    pip install ipython
    

    Thanks @mirandes

提交回复
热议问题