LibMark quickstart guide (for Linux)
August 9, 2021 ยท View on GitHub
For creating a virtual environment in which to run LibMark, you should start by getting Miniconda (A good little resource for the use of Conda is the Conda cheatsheet)
Some of Tequila's dependencies require Python 3.7, so the virtual environment should be set to use that. The command to create environments is
conda create --name [environment name] python=3.7
where the [environment name] is of your choosing. To use the environment:
conda activate [environment name]
LibMark is currently dependent on Tequila, so naturally it should be installed:
pip install tequila-basic
Tequila supports various quantum backends that are not automatically installed with Tequila. They are listed on Tequila's project page, and you might need at least some of them at some time. At the moment of writing, all of these backends can be installed with pip.
What is not installable through pip, but is currently essential for the use of Tequila with LibMark, is psi4. It can be installed with:
conda install psi4 -c psi4
More about psi4 and quantum chemistry packages in Tequila's readme.