-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prototypes a new isolation interface #266
base: dev
Are you sure you want to change the base?
Conversation
Hi @SimonBartels, @RMichae1. Could I ask you to take a look into the last two tests of I'm prototyping a new isolation interface that will hopefully be more reliable than the current one we have. In a nutshell:
Something like: from pathlib import Path
from poli.objective_factory import create
problem = create(
name="rasp",
wildtype_pdb_path=Path(__file__).parent.parent
/ "static_files_for_tests"
/ "3ned.pdb",
python_executable_for_isolation="/Users/sjt972/anaconda3/envs/poli__rasp/bin/python",
) |
Interesting approach. So the environment is defined through the executable? Sounds awesome. This also implies support for virtualenv and what not, right? |
Yeah, precisely. We should only assume that the user has That being said, I still think we should provide |
It seems that running w. the |
Hm. And there are other possible environment changes affecting for example |
No description provided.