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
For MACE and GAP, we can find the fitting script that's consistent with the currently installed module, and this should possibly be the default, ahead of the one that's in the path, if it's not explicitly specified in function arg or env var.
assuming that the executed python3 will inherit the same PYTHONPATH as the running one (could always do some sort of thing with env PYTHONPATH={...} python3 ... filling in the path from sys.path.
Note that the inheriting of the PYTHONPATH could also be a problem, albeit in a subtler way, for the mace option, because even if we explicitly find the version of run_train.py, any modules it loads will come from PYTHONPATH.
The text was updated successfully, but these errors were encountered:
For MACE and GAP, we can find the fitting script that's consistent with the currently installed module, and this should possibly be the default, ahead of the one that's in the path, if it's not explicitly specified in function arg or env var.
For mace, there's a script we can just run:
For gap there's no such script, but we could perhaps use
assuming that the executed python3 will inherit the same
PYTHONPATH
as the running one (could always do some sort of thing withenv PYTHONPATH={...} python3 ...
filling in the path fromsys.path
.Note that the inheriting of the PYTHONPATH could also be a problem, albeit in a subtler way, for the mace option, because even if we explicitly find the version of
run_train.py
, any modules it loads will come fromPYTHONPATH
.The text was updated successfully, but these errors were encountered: