oR
ouRGeo
Open-Source Spatial IDE
Home Features Download Privacy

Download ouRGeo

Latest release · v1.8.0

Free and open-source under the MIT License. Windows and Linux builds are ready today — grab the installer for your platform below.

🐧
Linux — Universal
Any modern x64 distro
.AppImage
v1.8.0 · ~161 MB
⬇ Download
🐧
Debian / Ubuntu
apt / dpkg install
.deb
v1.8.0 · ~126 MB
⬇ Download
🪟
Windows
Windows 10 / 11 (x64)
.exe
v1.8.0 · installer
⬇ Download
🍎
macOS
macOS 11+
.dmg
In the works
Coming Soon
A macOS build is coming soon. ouRGeo is built on Electron and R, both cross-platform — the macOS desktop installer is next on the roadmap.

Installing on Windows

Download ouRGeo-1.8.0.exe and run it — the installer walks you through setup and adds ouRGeo to your Start menu. Windows SmartScreen may show a "Windows protected your PC" notice for a new publisher; choose More info → Run anyway to continue.

Installing on Linux

AppImage (any distro)

No installation needed — mark it executable and run it:

chmod +x ouRGeo-1.8.0.AppImage
./ouRGeo-1.8.0.AppImage

Debian / Ubuntu (.deb)

Install with apt (it pulls in any system dependencies automatically):

sudo apt install ./ouRGeo-1.8.0.deb
# then launch it from your app menu, or:
ourgeo

One-Time R Setup

ouRGeo keeps R at its core, so it needs R (4.0+) and a few spatial packages available on your machine. Install R from your distro or cran.r-project.org, then run:

# Core — required for the app to start
install.packages(c("httpuv", "jsonlite", "later", "httr2"))

# Spatial features (maps, geoprocessing, basemaps)
install.packages(c("sf", "terra", "ggplot2", "tmap",
                   "ggspatial", "maptiles", "tidyterra"))

# Exact curved geometry (CIRCULARSTRING / COMPOUNDCURVE / CURVEPOLYGON)
install.packages("sfarc")

# Database (.Rgeo / DuckDB-backed datasets)
install.packages(c("DBI", "duckdb", "dplyr"))
Upgraded R recently? After a major R update you must rebuild your packages (update.packages(ask = FALSE, checkBuilt = TRUE)) — CRAN binaries are linked to a specific R version, and ouRGeo won't connect to R until they're rebuilt.

System Requirements