Email or username:

Password:

Forgot your password?
Top-level
Simon Willison

Giving this another bump: I still want to hear from Windows users who have successfully installed SpatiaLite

As far as I can tell you download the mod_spaitalite 7z file from gaia-gis.it/gaia-sins/windows- then place its content somewhere on your PATH - but I’m stuck on that step, what’s the recommended way of putting files on the PATH?

I’ve found instructions that involve right clicking on things, but I’m running windows-latest in GitHub Actions so I need to do it entirely through powershell or bash

2 comments
haliphax 👾

@simon `set PATH=%PATH%;c:\new\folder` was always my go to, but I'll admit I haven't used Windows in at least a few years

Brian Reiter

@simon the %PATH% environment is set from a UI in sysdm.cpl > environment. Windows puts each app in a separate path. The general assumption is that you interact with apps via gui or there is an installer to set the %PATH%. There is no standard /usr/local/bin, /opt/bin concept at all.

Go Up