ImportError: No module named scipy

后端 未结 12 703
悲哀的现实
悲哀的现实 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:16

    Try to install it as a python package using pip. You said you already tried:

    sudo apt-get install python-scipy
    

    Now run:

    pip install scipy
    

    I ran both and it worked on my Debian-based box.

提交回复
热议问题