Skip to content

Commit 3eac6a8

Browse files
committed
Use pip install, not setup.py for netpyne install
1 parent 1d192e4 commit 3eac6a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

omv/engines/getnetpyne.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ def install_netpyne(version=None):
4747
"python-dateutil==2.8.0",
4848
]
4949
)
50-
print(check_output([sys.executable, "setup.py", "install"]))
50+
pip_install(".")
5151

5252
m = "Successfully installed NetPyNE..."

omv/engines/jneuroml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def is_installed():
7878
def install(version):
7979
from omv.engines.getjnml import install_jnml
8080

81-
inform("Will fetch and install the latest jNeuroML jar", indent=2)
81+
inform("Will fetch and install jNeuroML jar", indent=2)
8282
install_jnml(version)
8383

8484
def run(self):

0 commit comments

Comments
 (0)