Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update macOS advanced install with homebrew #70

Merged
merged 2 commits into from
Mar 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update macOS advanced install with homebrew
osgeo/osgeo4mac is no longer maintained, proj, geos, and gdal can be installed straight from the homebrew repository.
  • Loading branch information
ConnorB authored Mar 7, 2024
commit 7d69690a2547ba7a2a8f020867988334081d8b4e
3 changes: 1 addition & 2 deletions learners/setup.md
Original file line number Diff line number Diff line change
@@ -23,11 +23,11 @@

| Software | Install | Manual | Available for | Description |
| -------- | ------- | ------ | --------------------- | ------------------------------------------------------------- |
| [GDAL](https://www.gdal.org) | [Link](https://gdal.org/download.html) | [Link](https://gdal.org) | Linux, MacOS, Windows | Geospatial model for reading and writing a variety of formats |

Check warning on line 26 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://gdal.org/download.html)

Check warning on line 26 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://gdal.org)
| [GEOS](https://trac.osgeo.org/geos) | [Link](https://trac.osgeo.org/geos) | [Link](https://geos.osgeo.org/doxygen/) | Linux, MacOS, Windows | Geometry models and operations |

Check warning on line 27 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://trac.osgeo.org/geos)

Check warning on line 27 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://geos.osgeo.org/doxygen/)
| [PROJ.4](https://proj4.org) | [Link](https://proj4.org/install.html) | [Link](https://proj4.org/index.html) | Linux, MacOS, Windows | Coordinate reference system transformations |

Check warning on line 28 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://proj4.org/install.html)

Check warning on line 28 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://proj4.org/index.html)
| [R](https://www.r-project.org) | [Link](https://cloud.r-project.org) | [Link](https://cloud.r-project.org) | Linux, MacOS, Windows | Software environment for statistical and scientific computing |

Check warning on line 29 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[link text too short]: [R](https://www.r-project.org)

Check warning on line 29 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://cloud.r-project.org)

Check warning on line 29 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://cloud.r-project.org)
| [RStudio](https://www.rstudio.com) | [Link](https://www.rstudio.com/products/rstudio/download/#download) | | Linux, MacOS, Windows | GUI for R |

Check warning on line 30 in learners/setup.md

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [Link](https://www.rstudio.com/products/rstudio/download/#download)
| [UDUNITS](https://www.unidata.ucar.edu/software/udunits/) | [Link](https://www.unidata.ucar.edu/downloads/udunits/index.jsp) | [Link](https://www.unidata.ucar.edu/software/udunits/#documentation) | Linux, MacOS, Windows | Unit conversions |

We provide quick instructions below for installing the various software needed for this workshop. At points, they assume familiarity with the command line and with installation in general. As there are different operating systems and many different versions of operating systems and environments, these may not work on your computer. If an installation doesn't work for you, please refer to the installation instructions for that software listed in the table above.
@@ -61,10 +61,9 @@
Alternatively, participants who are comfortable with the command line can install the geospatial libraries individually using [homebrew](https://brew.sh):

```bash
$ brew tap osgeo/osgeo4mac && brew tap --repair
$ brew install proj
$ brew install geos
$ brew install gdal2
$ brew install gdal
```

:::::::::::::::::::::::::
Loading