You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
First, thanks for making this SQLite extension.
I use it with Bun (JS runtime in Zig) and everything is working perfectly.
I use a Mac (Apple Silicon) and load it with:
import { Database } from 'bun:sqlite'
import * as sqlite_vss from 'sqlite-vss'
Database.setCustomSQLite('/opt/homebrew/opt/sqlite/lib/libsqlite3.dylib')
I can query flawlessly!
However, when I deploy my app on a ARM linux VPS (running Ubuntu), I've got this error message:
Loadble extension for sqlite-vss not found. Was the sqlite-vss-linux-arm64 package installed? Avoid using the --no-optional flag, as the optional dependencies for sqlite-vss are required.
But there is no sqlite-vss-linux-arm64 package available, and I use no flag.
Do I miss something?
Thanks a lot.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
First, thanks for making this SQLite extension.
I use it with
Bun
(JS runtime inZig
) and everything is working perfectly.I use a Mac (Apple Silicon) and load it with:
I can query flawlessly!
However, when I deploy my app on a ARM linux VPS (running
Ubuntu
), I've got this error message:Loadble extension for sqlite-vss not found. Was the sqlite-vss-linux-arm64 package installed? Avoid using the --no-optional flag, as the optional dependencies for sqlite-vss are required.
But there is no
sqlite-vss-linux-arm64
package available, and I use no flag.Do I miss something?
Thanks a lot.
Beta Was this translation helpful? Give feedback.
All reactions