-
Notifications
You must be signed in to change notification settings - Fork 14
Added IPython notebook example using pyNeuroML #4
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
base: master
Are you sure you want to change the base?
Conversation
|
9bb51c0 is a bug fix. |
|
Looking into this. Unfortunately, I can't get sciunit to install on my Fedora 33 system with pip here. The AllenSDK seems to have quite a few deps that do not include wheels from the looks of it, and pip fails when it tries to compile them from source for various reasons. Example errors with PyTables: Similarly with statsmodels: Could be python3.9 related. It'll require some digging in and bug-reports with all these projects. On my TODO list now. |
|
https://docs.python.org/release/3.9.0/whatsnew/3.9.html#id3 says:
So, that's probably it. Will file issues upstream and see what can be done here. |
|
SciUnit should install fine (it doesn't have AllenSDK or any of that other stuff as dependencies). It is probably NeuronUnit you are having trouble with. Pip is probably hopeless for AllenSDK on many architectures/environments, and a conda environment or something like that will probably work better for now. On my to-do list is to refactor NeuronUnit to move dependencies like AllenSDK, which are only required for a subset of behaviors (and not relevant to this particular example) to become optional dependencies. You could even just comment that dependency out for the purposes of this example. |
|
Hi @rgerkin . Thanks, that sounds good. I'll comment out the AllenSDK dependency in NeuronUnit for the time being and see how far I get. Cheers, |
|
@sanjayankur31 You may have to comment out some |
|
Sure, I'll have a look and see how far I get :) |
No description provided.