# Installation & Setup
The documentation is a collection of simple codes desgined to enhance the performance and improve productivity of
projects catered towards data science and machine learning. All the codes are publically made available under the
[GitHub Gists](https://gist.github.com/ZenithClown), while the code documentation is hosted using Read-the-Docs and
is available at [GitHub/ZenithClown](https://github.com/code-archived/ds-gringotts) repository.
The individual module can be setup using [`git`](https://git-scm.com/) the same way as a repository. GitHub generates a
checksum key for a `gists` thus it is advisable to clone with a desired name using `git`, and adding the same to the path
variable allows Python to look for the packages in the system. Typically, the directory name can be set as the file's name
(or the first `.py` file, in case of multiple files) or to any desired user-preferred name.
```shell
git clone https://gist.github.com/username/checksum.git name
$ export PYTHONPATH="${PYTHONPATH}:name" # cd into the directory
```