diff --git a/README.md b/README.md index fe15bfe6..6d1ec02e 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,9 @@ In order to use th file `pyproject.toml` it is necessary to guarantee `pip>=21.8 For a stable point-release, use `pip install terratorch`. If you prefer to get the most recent version of the main branch, install the library with `pip install git+https://github.com/IBM/terratorch.git`. +Another alternative is to install using [pipx](https://github.com/pypa/pipx) via `pipx install terratorch`, which creates an isolated environment and allows the user to run the application as +a common CLI tool, with no need of installing dependencies or activating environments. + TerraTorch requires gdal to be installed, which can be quite a complex process. If you don't have GDAL set up on your system, we reccomend using a conda environment and installing it with `conda install -c conda-forge gdal`. To install as a developer (e.g. to extend the library) clone this repo, install dependencies using `pip install -r requirements.txt` and run `pip install -e .` diff --git a/pyproject.toml b/pyproject.toml index 818d9fe0..49a2229d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = "terratorch" -version = "0.99.0" +version = "0.99.1" description = "TerraTorch - A model training toolkit for geospatial tasks" license = { "text" = "Apache License, Version 2.0" } readme = "README.md" @@ -144,7 +144,7 @@ exclude_lines = [ ] [tool.bumpver] -current_version = "0.99.0" +current_version = "0.99.1" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = true