We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71d5920 commit 73a469fCopy full SHA for 73a469f
omv/engines/jneuroml.py
@@ -81,6 +81,10 @@ def install(version):
81
inform("Will fetch and install jNeuroML jar", indent=2)
82
install_jnml(version)
83
84
+ if not JNeuroMLEngine.is_installed():
85
+ inform("Failure to install, exiting", indent=1)
86
+ exit(1)
87
+
88
def run(self):
89
try:
90
inform(
omv/engines/pyneuroml_.py
@@ -38,6 +38,11 @@ def install(version):
38
inform("Will fetch and install the latest pyNeuroML", indent=2)
39
install_pynml(version)
40
41
+ if not PyNeuroMLEngine.is_installed():
42
43
44
45
46
47
48
0 commit comments