Installation

Downloading Code

The latest code can be obtained through theochem (https://github.com/theochem/grid) in Github,

git clone https://github.com/theochem/grid.git

Dependencies

The following dependencies will be necessary for Procrustes to build properly,

Installation

Installation via pip can be done by the following command:

pip install git+https://github.com/theochem/grid.git@master

With later release in PyPi, Grid can be installed via

pip install qc-grid

Grid can also be installed by cloning via git,

git clone https://github.com/theochem/grid.git

Then installation via pip can be done by going into the directory where Grid is downloaded to and running,

cd grid
pip install .

Successful installation can be checked by running the tests,

pytest --pyargs grid

Building Documentation

The following shows how to build the documentation using sphinx to the folder _build.

cd ./doc
./gen_api.sh
sphinx-build -b html . _build