Repository used for exploration of Gaussian and Hermite Gaussian basis functions.
To install this package you first need (assuming you already have Python and pip installed) the Rust compiler. The easiest way to get Rust is found here.
To install the necessary development dependencies using pip , run:
$ pip install -r requirements.txtIt is recommended to set up a virtual environment prior to running pip. Do this via:
$ python -m venv venv
$ source venv/bin/activateTo deactivate the environment run:
$ deactivateIf you have cloned the repository you can now run:
pip install .or
pip install -e .in your local clone. Otherwise, you can also install via git by (if an SSH key has been set up):
pip install git+ssh://git@github.com/Schoyen/gaussians.gitOr using regular HTTPS:
pip install git+https://github.com/Schoyen/gaussians.git