PyRhO seems to have broken my other libraries upon installation

前端 未结 2 406
栀梦
栀梦 2021-01-22 17:09

I\'m running Ubuntu 18.10 and Python 3.6, and have been using this laptop and common Python libraries (numpy, scipy, matplotlib) without any issue for several months now. I used

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-22 18:02

    Thanks to AidanGawronski, the problem was fixed. I went to a Github page for the error and for me, it turned out that I had multiple redundant instances of numpy installed, so I just kept using

    sudo pip3 uninstall numpy

    then

    pip3 list

    to uninstall and check if I had finally uninstalled all instances of numpy. Once I had gotten rid of all of them, I used

    sudo -E pip3 install --upgrade numpy

    and it fixed the issue.

提交回复
热议问题