mahsa-ebrahimian
mahsa-ebrahimian

Reputation: 151

No module named 'bindsnet.network'

I am going to use Bindsnet for Spiking Neural Network and I have imported it using

! pip install bindsnet in jupyter notebook.

and My Python's version is 3.6.

when I run:

from bindsnet.network import Network

It returns below error message:

ModuleNotFoundError: No module named 'bindsnet.network'

Can you please let me know how to solve this?

Upvotes: 0

Views: 635

Answers (1)

mahsa-ebrahimian
mahsa-ebrahimian

Reputation: 151

It turned out that using pip install was not successful so I changed the code for installation to :

!pip install bindsnet --ignore-installed

and now I can run from bindsnet.network import Network with no error.

Upvotes: 1

Related Questions