ImportError: No module named scipy

后端 未结 12 694
悲哀的现实
悲哀的现实 2020-12-05 01:36

I am using Python 2.7 and trying to get PyBrain to work.

But I get this error even though scipy is installed -

Traceback (most recent call last):
           


        
12条回答
  •  渐次进展
    2020-12-05 02:08

    I recommend you to remove scipy via

    apt-get purge scipy
    

    and then to install it by

    pip install scipy
    

    If you do both then you might confuse you deb package manager due to possibly differing versions.

提交回复
热议问题