m-balcewicz
m-balcewicz
Thank you very much for your quick reply. I am also working on osx silicon. I get a similar error installing `pip install unstructured`. Trying to find the main error,...
> Setting this helped on macOS in my case: > > ``` > sudo xcode-select -s /Library/Developer/CommandLineTools > ``` Thank you, @aartajew. Obviously, my env was not set up correctly....
I also experience the same error. "sqlite3.OperationalError: no such column: "size" - should this be a string literal in single-quotes?". I have extracted the corresponding cache as requested. [cache.zip](https://github.com/user-attachments/files/18883839/cache.zip)
Yes, you're right. It's a new installation. Here is the sysinfo… [sysinfo-2025-02-20-10-25.json](https://github.com/user-attachments/files/18884967/sysinfo-2025-02-20-10-25.json)
Well, this looks fine I guess. ``` (venv) martin@martins-mbp:stable-diffusion-webui python -c "import sqlite3; print(sqlite3.sqlite_version)" >> 3.49.1 ```
It worked out. Now, I am using sqlite 3.42.0. ``` (venv) martin@martins-mbp:stable-diffusion-webui python -c "import sqlite3; print(sqlite3.sqlite_version)" 3.42.0 ```
I tried to reproduce my error and checked a few settings. **Conclusion: sqlite=3.49.1 was no problem, but python=3.12.9 seems to create some errors.** I am working with conda environments and...