Skip to content

Commit 9d3da72

Browse files
Merge pull request #29 from IBM/docs/pipx
Docs/pipx
2 parents cee2473 + 7a4ec45 commit 9d3da72

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ In order to use th file `pyproject.toml` it is necessary to guarantee `pip>=21.8
1919
For a stable point-release, use `pip install terratorch`.
2020
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`.
2121

22+
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
23+
a common CLI tool, with no need of installing dependencies or activating environments.
24+
2225
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`.
2326

2427
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 .`

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = "terratorch"
7-
version = "0.99.0"
7+
version = "0.99.1"
88
description = "TerraTorch - A model training toolkit for geospatial tasks"
99
license = { "text" = "Apache License, Version 2.0" }
1010
readme = "README.md"
@@ -144,7 +144,7 @@ exclude_lines = [
144144
]
145145

146146
[tool.bumpver]
147-
current_version = "0.99.0"
147+
current_version = "0.99.1"
148148
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
149149
commit_message = "Bump version {old_version} -> {new_version}"
150150
commit = true

0 commit comments

Comments
 (0)