Installing iPython: “ImportError cannot import name path”?

后端 未结 5 794
礼貌的吻别
礼貌的吻别 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 22:54

    Looks like this is a known issue, caused by a change in the path.py package. Reverting to an older version of path.py solves this :

    sudo pip3 install -I path.py==7.7.1
    

提交回复
热议问题