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 329b7eb commit 19134e6Copy full SHA for 19134e6
omv/engines/getpynn.py
@@ -13,6 +13,9 @@ def install_pynn(version=None):
13
# pip_install('lazyarray') # This should ideally be automatically installed with PyNN...
14
# pip_install('neo>=0.11.0') # This should ideally be automatically installed with PyNN...
15
16
+ pip_install("pynn", version)
17
+ import pyNN
18
+ '''
19
install_root = os.environ["HOME"]
20
21
pyNN_src = "PyNN_src"
@@ -33,6 +36,7 @@ def install_pynn(version=None):
33
36
print(check_output(["pwd"]))
34
37
print("Finished attempting to install PyNN")
35
38
# import pyNN
39
40
m = "Successfully installed pyNN..."
41
except Exception as e:
42
m = "ERROR during install_pynn: %s" % e
0 commit comments