Installing iPython: “ImportError cannot import name path”?

后端 未结 5 802
礼貌的吻别
礼貌的吻别 2021-02-06 22:31

I\'m trying to install IPython. I have run pip install ipython[notebook] without any errors, but now I get this:

$ ipython notebook
Traceback (most          


        
5条回答
  •  悲哀的现实
    2021-02-06 23:12

    I received this error while trying to import matplotlib on Windows 10. My problem was that matplotlib needed an update. I just ran the following code:

    python -m pip install matplotlib
    

    or:

    conda install matplotlib
    

    My guess is that this can be applied to IPython.

提交回复
热议问题