.. _installation: Installation ************ Installing via `conda` ====================== The simplest way to install the Open Forcefield Toolkit is via the `conda `_ package manager. Packages are provided on the `omnia Anaconda Cloud channel `_ for Linux, OS X, and Win platforms. The `openforcefield Anaconda Cloud page `_ has useful instructions and `download statistics `_. If you are using the `anaconda `_ scientific Python distribution, you already have the ``conda`` package manager installed. If not, the quickest way to get started is to install the `miniconda `_ distribution, a lightweight minimal installation of Anaconda Python. On ``linux``, you can install the Python 3 version into ``$HOME/miniconda3`` with (on ``bash`` systems): .. code-block:: bash $ wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh $ bash ./Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda3 $ source ~/miniconda3/etc/profile.d/conda.sh $ conda activate base On ``osx``, you want to use the ``osx`` binary .. code-block:: bash $ curl https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O $ bash ./Miniconda3-latest-MacOSX-x86_64.sh -b -p $HOME/miniconda3 $ source ~/miniconda3/etc/profile.d/conda.sh $ conda activate base You may want to add the new ``source ~/miniconda3/etc/profile.d/conda.sh`` line to your ``~/.bashrc`` file to ensure Anaconda Python can enabled in subsequent terminal sessions. ``conda activate base`` will need to be run in each subsequent terminal session to return to the environment where the toolkit will be installed. Note that ``openforcefield`` will be installed into this local Python installation, so that you will not need to worry about disrupting existing Python installations. .. note:: Installation via the conda package manager is the preferred method since all dependencies are automatically fetched and installed for you. | Required dependencies ===================== The ``openforcefield`` toolkit makes use of the `Omnia `_ and `Conda Forge `_ free and open source community package repositories: .. code-block:: bash $ conda config --add channels omnia --add channels conda-forge $ conda update --all This only needs to be done once. .. note :: If automation is required, provide the ``--yes`` argument to ``conda update`` and ``conda install`` comamnds. More information on the ``conda`` command-line API can be found in the `conda online documentation `_. | Release build ------------- You can install the latest stable release build of ``openforcefield`` via the ``conda`` package with .. code-block:: none $ conda config --add channels omnia --add channels conda-forge $ conda install openforcefield This version is recommended for all users not actively developing new forcefield parameterization algorithms. .. note:: The conda package manager will install dependencies from binary packages automatically, including difficult-to-install packages such as OpenMM, numpy, and scipy. This is really the easiest way to get started. | Upgrading your installation --------------------------- To update an earlier ``conda`` installation of ``openforcefield`` to the latest release version, you can use ``conda update``: .. code-block:: bash $ conda update openforcefield | Optional dependencies --------------------- This toolkit can optionally make use of the `OpenEye toolkit `_ if the user has a license key installed. Academic laboratories intending to release results into the public domain can `obtain a free license key `_, while other users (including academics intending to use the software for purposes of generating protected intellectual property) must `pay to obtain a license `_. To install the OpenEye toolkits (provided you have a valid license file): .. code-block:: none $ conda install --yes -c openeye openeye-toolkits No essential ``openforcefield`` release capabilities *require* the OpenEye toolkit, but the Open Force Field developers make use of it in parameterizing new open source force fields. It is known that there are certain differences in toolkit behavior between RDKit and OpenEye when reading a small fraction of molecules, and we encourage you to report any unexpected behavior that may be caused by toolkit differences to our `issue tracker `_. | Alternative method: Single-file installer ========================================= As of release 0.4.1, single-file installers are available for each Open Force Field Toolkit release. These are provided primarily for users who do not have access to the Anaconda cloud for installing packages. These installers have few requirements beyond a Linux or OSX operating system and will, in one command, produce a functional Python executable containing the Open Force Field Toolkit, as well as all required dependencies. The installers are very similar to the widely-used Miniconda ``*.sh`` files. Accordingly, installation using the "single-file installer" does not require root access. The installers are between 200 and 300 MB each, and can be downloaded from the "Assets" section of the Toolkit's `GitHub Releases page `_. They are generated using a `workflow leveraging the "conda constructor" utility `_. Please report any installer difficulties to the `OFF Toolkit Issue tracker `_, as we hope to make this a major distribution channel for the toolkit moving forward. | Installation ------------ Download the appropriate installer (``openforcefield--py37--x86_64.sh``) from `the "Assets" section at the bottom of the desired release `_. Then, install the toolkit with the following command: .. code-block:: bash $ bash openforcefield--py37--x86_64.sh and follow the prompts. .. note:: You must have write access to the installation directory. This is generally somewhere in the user's home directory. When prompted, we recommend NOT making modifications to your ``bash_profile``. .. warning:: We recommend that you do not install this package as root. Conda is intended to support on-the-fly creation of several independent environments, and `managing a multi-user conda installation is somewhat involved. `_ | Usage ----- Any time you want to use this conda environment in a terminal, run .. code-block:: bash $ source /etc/profile.d/conda.sh $ conda activate base Once the ``base`` environment is activated, your system will default to use python (and other executables) from the newly installed conda environment. | Installing optional OpenEye toolkits ------------------------------------ We're waiting on permission to redistribute the OpenEye toolkits inside the single-file installer, so for now the installers only ship with the open-source backend (RDKit+AmberTools). With this in mind, the conda environment created by the installer *contains the conda package manager itself*, which can be used to install the OpenEye toolkits if you have access to the Anaconda cloud. .. code-block:: bash $ conda install -c openeye openeye-toolkits .. note:: The OpenEye Toolkits conda package still requires a valid OpenEye license file to run.