Openeye python libraries

From DISI
Revision as of 01:41, 21 May 2015 by Frodo (talk | contribs) (asdf)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

They provide a "nice" python package that can be installed in a virtualenv.

I've copied the contents of this to /nfs/soft/openeye/current/python to emulate the Cluster 0 behavior.

However the "best" approach may be to create a virtualenv and install it in there. That way you're isolated from any changes that may happened on the cluster versions: This should do it all:

/nfs/soft/python/install/scripts/create-virtualenv.sh /nfs/soft/python/envs/vanilla/python-2.7.7 ~/my-python-env
  1. Wait a bit
/nfs/soft/python/envs/vanilla/python-2.7.7/bin/pip freeze > ~/my-python-env/requirements.txt
source ~/my-python-env/bin/activate.[c]sh
pip install -r ~/my-python-env/requirements.txt
pip install /nfs/soft/openeye/install/centos/OpenEye-python2.7-redhat-6-x64-2014.2.2/dist/OpenEye_python2.7_redhat_6_x64-2014.2.2-py2.7.egg

Alternatively you can use the /nfs/soft/python/envs/complete/latest environment. It has openeye installed.