Installing
Instalation from PyPI
Make sure you have Python 3.10+ in your PATH (see http://www.python.org/download/).
Open a command prompt and type:
pip install gold-python
Attention
We do not support Python 3.9 or earlier for the time being. This includes the latest version of Anaconda. Make sure you are using the Python installation from python.org instead of Anaconda before reporting any issues.
Building from source
Clone the repository:
git clone https://github.com/GOLD-Python/GOLD-Python
Install the dependencies:
pip install -r requirements.txt
Install the package:
python setup.py install
Danger
No suppport will be provided for building from source. Please use the pip package instead. If you wish to contribute to the project, please see the contributing guide.
Building the documentation
Clone the repository:
git clone https://github.com/GOLD-Python/GOLD-Python
Install sphinx:
pip install sphinx
Run the build script:
make html
The documentation will be in the docs/_build/html folder.
Note
If you are using Windows, you may need to install make for Windows. See https://stackoverflow.com/questions/32127524/how-to-install-and-use-make-in-windows for more information. To support the documentation, please see the contributing guide.