Skip to content

Commit 93da325

Browse files
Merge branch 'extend/docs' of github.com:IBM/terratorch into extend/docs
2 parents 14dd0e2 + 2276cc8 commit 93da325

5 files changed

+357
-264
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ The library provides:
1717
In order to use th file `pyproject.toml` it is necessary to guarantee `pip>=21.8`. If necessary upgrade `pip` using `python -m pip install --upgrade pip`.
1818

1919
For a stable point-release, use `pip install terratorch`.
20-
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`
20+
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`.
21+
22+
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`.
2123

2224
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 .`
2325

docs/quick_start.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Quick start
22
We suggest using Python==3.10.
3-
To get started, make sure to have `PyTorch >= 2` [installed](https://pytorch.org/get-started/locally/).
3+
To get started, make sure to have [PyTorch](https://pytorch.org/get-started/locally/) >= 2.0.0 and [GDAL](https://gdal.org/index.html) installed.
4+
5+
Installing GDAL 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`.
46

57
For a stable point-release, use `pip install terratorch`.
68
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`.

examples/notebooks/Tutorial.ipynb

+350-256
Large diffs are not rendered by default.
Binary file not shown.

pyproject.toml

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

55
[project]
66
name = "terratorch"
7-
#version = "0.99.0"
8-
dynamic = ["version"]
7+
version = "0.99.0"
98
description = "TerraTorch - A model training toolkit for geospatial tasks"
109
license = { "text" = "Apache License, Version 2.0" }
1110
readme = "README.md"
@@ -143,10 +142,6 @@ exclude_lines = [
143142
"if TYPE_CHECKING:",
144143
]
145144

146-
#[tool.setuptools.packages.find]
147-
#include = ["terratorch"]
148-
#namespaces = false
149-
150145
[tool.bumpver]
151146
current_version = "0.99.0"
152147
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

0 commit comments

Comments
 (0)