Closed louisreg closed 1 year ago
test if NEURON is not in the path. Something like: import subprocess
A = subprocess.run(["which", "toto"], capture_output=True) if A.stdout.decode().strip() = "": print("program 'toto' not found")'
solved in dev
test if NEURON is not in the path. Something like: import subprocess
A = subprocess.run(["which", "toto"], capture_output=True) if A.stdout.decode().strip() = "": print("program 'toto' not found")'