ImportError: No module named scipy

后端 未结 12 693
悲哀的现实
悲哀的现实 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条回答
  •  -上瘾入骨i
    2020-12-05 02:24

    This may be too basic (and perhaps assumable), but -

    Fedora users can use:

    sudo dnf install python-scipy

    and then (For python3.x):

    pip3 install scipy

    or (For python2.7):

    pip2 install scipy

提交回复
热议问题