Hi,
I am trying to install two versions of OpenMM on my machine, one for production run and the other for quick modifications and tests. Is there a good way to keep those two completely isolated from each other (including C++ part and Python part)?
Thanks!
Wei
multiple OpenMM installations?
- Peter Eastman
- Posts: 2593
- Joined: Thu Aug 09, 2007 1:25 pm
Re: multiple OpenMM installations?
If you create two different conda environments (see https://conda.io/docs/using/envs.html), that should mostly work. Any versions of OpenMM you install with conda are completely contained within that environment. But if you are building one of them from source, you'll need to be a bit careful of that. For example, if you install the libraries into /usr/local/openmm, be sure to set your library path appropriately so it includes that directory when you're using that version, but doesn't include it when you're using a version installed by conda.
Re: multiple OpenMM installations?
That works, thank you!
Wei
Wei
- web design
- Posts: 10
- Joined: Fri Aug 18, 2017 12:43 pm
Re: multiple OpenMM installations?
I also used a lot of thanks