-
Notifications
You must be signed in to change notification settings - Fork 11
Scipy sparse import error #252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
hunse
added a commit
that referenced
this issue
Oct 30, 2019
I just ran into this when testing on a fresh install with Nengo 2.8.0. I've put a fix in #234. |
hunse
added a commit
that referenced
this issue
Oct 30, 2019
Some import statements just imported `scipy` when we needed `scipy.sparse`. Import order differences made this an occasional bug. Fixes #252.
hunse
added a commit
that referenced
this issue
Oct 30, 2019
Some import statements just imported `scipy` when we needed `scipy.sparse`. Import order differences made this an occasional bug. Fixes #252.
hunse
added a commit
that referenced
this issue
Nov 13, 2019
Some import statements just imported `scipy` when we needed `scipy.sparse`. Import order differences made this an occasional bug. Fixes #252.
hunse
added a commit
that referenced
this issue
Nov 20, 2019
Some import statements just imported `scipy` when we needed `scipy.sparse`. Import order differences made this an occasional bug. Fixes #252.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I encountered this issue with the current master branch of
nengo-loihi
,nxsdk 0.8.5.1
, and with thenengolib
repo installed in a python environment. The error occurs trying to runens_ens.py
from thedocs/examples
folder.I fixed it locally by doing
import scipy.sparse
inbuilder/connections.py
, right after theimport scipy
line.The text was updated successfully, but these errors were encountered: