-
Notifications
You must be signed in to change notification settings - Fork 65
Description
I have installed pypreprocess in a Python 2.7 virtual environment on Debian 9.9 but without neurodebian travis as I do not have root access. I cannot get the SPM configured.
Here is my test code and associated output.
Code:
import os
from pypreprocess.configure_spm import _configure_spm
print 'SPM_DIR:', os.getenv('SPM_DIR')
print 'SPM_MCR:', os.getenv('SPM_MCR')
print 'SPM CONFIGURED:', _configure_spm(config_spm_dir=os.getenv('SPM_DIR'),
config_spm_mcr=os.getenv('SPM_MCR'))
Output:
191020-14:30:41,988 nipype.utils INFO:
Running nipype version 1.2.3 (latest: 1.2.3)
SPM_DIR: /home/homeGlobal/kpatil/opt/spm12/spm12/
SPM_MCR: /home/homeGlobal/kpatil/opt/spm12/spm12.sh
No handlers could be found for logger "pypreprocess"
SPM CONFIGURED: None
Is this due to travis not installed or something else?
Will be happy to provide any further information.