You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there is some python call in the mob-suite code written as
p = Popen(['python', ...] )
os.system('python'.... )
I suggest you replace verbatim python by sys.executable.
on some situations, users may have a python in their path different form the one scripts have been installed with
NB this is how we perform our installation on our cluster.
this may lead to a call to a different python version, python with different set of modules and so on.
sys.executable will ensure that you will use the same interpreter,
Eric
The text was updated successfully, but these errors were encountered:
String encoding issues on POSIX locale, ete3 initialization moved to `databases` folder (issue #38), version key addition (issue #35), fixed meta data section in `setup.py` (issue #40), added external python calls using `sys.executable` issue #39
there is some python call in the mob-suite code written as
I suggest you replace verbatim python by sys.executable.
on some situations, users may have a python in their path different form the one scripts have been installed with
NB this is how we perform our installation on our cluster.
this may lead to a call to a different python version, python with different set of modules and so on.
sys.executable will ensure that you will use the same interpreter,
Eric
The text was updated successfully, but these errors were encountered: