Awesome
pipgeo: CLI for Unofficial windows Geospatial library wheels
The amazing work of Christoph Gohlke is the source of all this, though the unofficial windows binaries page at lfd is no longer maintained. Christoph has created a dedicated GitHub repository with a subset of geospatial wheel assets that have been released. This tool is a straightforward CLI that can pre-install a binary wheel from the latest release assets.
Installation
Installation is pretty simple use. The tool automatically also checks as new versions are released and informs you.
The precompiled wheels and as such the tool is only available for python 3.8 and higher
pip install pipgeo
pipgeo release
This tool fetches release assets from the latest release and lists them to the user incase they are looking for a specific packages and or want to install a specific package.
Example usage
pipgeo release
pipgeo fetch
This tool will allow you to fetch a specific package from the latest release and install it. You can search based on the package list returned form the release tool.
Example usage
pipgeo fetch --lib gdal
pipgeo sys
This will install all packages from the release assets onto your system. It maintains prerequisite and dependency order to allow for easy installation.
Example usage
pipgeo sys
Changelog
v0.0.6
- release checker tool now checks if packages exists for installed python version in latest release
v0.0.5
- release tool now print available release packages and version number
- improved pypi version check functionality
- fetch tool auto upgrades to latest version if new version is available in release
v0.0.4
- added dependency check from dependency tree
- dependencies also installed using pipgeo
v0.0.3
- updated readme with instructions