diff --git a/CHANGELOG.md b/CHANGELOG.md index d2342f28..1e280847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [2.2.1] - 2024-01-18 ## Added +- GHEtool is available on conda-forge (issue #107). - Possibility to start in another month (issue #140). - Equal functions for HourlyGeothermalLoad and MonthlyGeothermalLoadAbsolute (issue #189). - Cylindrical borehole correction (issue #187). diff --git a/README.md b/README.md index 13f760db..7a9c084c 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,11 @@ or one can install a newer development version using pip install --extra-index-url https://test.pypi.org/simple/ GHEtool ``` +GHEtool is also available as a conda package. Therefore, you can install GHEtool with the command: +```` +conda install GHEtool +```` + Developers can clone this repository. It is a good practise to use virtual environments (venv) when working on a (new) Python project so different Python and package versions don't conflict with eachother. For GHEtool, Python 3.8 or higher is recommended. General information about Python virtual environments can be found [here](https://docs.Python.org/3.9/library/venv.html) and in [this article](https://www.freecodecamp.org/news/how-to-setup-virtual-environments-in-python/). diff --git a/docs/sources/code/getting_started.md b/docs/sources/code/getting_started.md index bc1de2ef..3d34f3e8 100644 --- a/docs/sources/code/getting_started.md +++ b/docs/sources/code/getting_started.md @@ -28,6 +28,11 @@ or one can install a newer development version using pip install --extra-index-url https://test.pypi.org/simple/ GHEtool ``` +GHEtool is also available as a conda package. Therefore, you can install GHEtool with the command: +```` +conda install GHEtool +```` + Developers can clone this repository. It is a good practise to use virtual environments (venv) when working on a (new) Python project so different Python and package versions don't conflict with eachother. For GHEtool, Python 3.8 or higher is recommended. General information about Python virtual environments can be found [here](https://docs.Python.org/3.9/library/venv.html) and in [this article](https://www.freecodecamp.org/news/how-to-setup-virtual-environments-in-python/).