antigravkids
antigravkids
I ran into the same issue on Windows using `datasette publish cloudrun mydatabase.db --service=my-database` do do a [google cloud publish](https://docs.datasette.io/en/stable/publish.html). @Rik-de-Kort your fix worked perfectly! Thanks! I can always go...
The issue is still present, and the fix above still works in datasette version 1.0a3
Looking into coming up with a fix instead of a patch, (see above.) When I run with the released code, but add a print statement to see what the value...
And here's the proposed fix. I still need to for and do a pull request and all that good stuff, but the fix in /utils/__init__.py should be: The following in...
We ran into both of these problems this morning as well. After trying unsuccessfully to change the code, (didn't see this issue till just now), we finally did pip install...
This is a lot of very awesome work we'll use going forward testing with Windows on our plugins! Thank you! Just in case this helps, there are test cases for...
We added the standard Windows location to SPATIALITE_PATHS https://github.com/simonw/datasette/issues/2198#issuecomment-2081257809 as in ``` SPATIALITE_PATHS = ( "/usr/lib/x86_64-linux-gnu/mod_spatialite.so", "/usr/local/lib/mod_spatialite.dylib", "/usr/local/lib/mod_spatialite.so", "/opt/homebrew/lib/mod_spatialite.dylib", "C:\Windows\System32\mod_spatialite.dll", ) ```
Here it is starting up with the run command at the bottom of https://github.com/hcarter333/rm-rbn-history/blob/main/docs/tool_suite.md https://github.com/user-attachments/assets/f6d8c9d9-5318-43a1-b05f-e2ca3402f8d6
I just removed C:\Program Files\spatialite from both of my PATH variables (user and system) and https://github.com/user-attachments/assets/58e66c26-e073-4aba-8127-119bdc9d6c10 followed by https://github.com/user-attachments/assets/fb4d7ffb-540f-4c2c-9aac-3e05bf5ab9d5
I believe it will work. the videos shown above are with the spatialite directory removed from my path. The only file that's in C:\Windows\System32 is mod_spatialite.dll. I'm going to do...