Reputation: 151
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
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