-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using in Windows system get error "cannot load module 'libsqlite3'" #63
Comments
Ah okay found a solution
for me I put |
It also works for me.Thanks a lot!😘 |
I have encountered similar cases. So I used homebrew and did the following, which solved the problem. $ which sqlite3
/usr/bin/sqlite3
$ brew install sqlite
$ echo 'export PATH="/opt/homebrew/opt/sqlite/bin:$PATH"' >> ~/.zshrc
$ source ~/.zshrc
$ brew link sqlite3 --force
$ which sqlite3
/opt/homebrew/opt/sqlite/bin/sqlite3 |
The Exact same error happened to me also. I am on Ubuntu 22.04 LTS ,neovim installed through nix |
Hello,have you installed sqlite3 in your ubuntu? Please find the README of your plugin's 'requires' to check the environment require.As for me,I use ' requires = {"kkharji/sqlite.lua"}',and in its document,I must install sqlite in my device before,using 'sudo apt-get install sqlite3'. |
I tried running "sudo apt-get install sqlite3" but the problem still persisted but strangely Telescope.nvim still kinda works |
Can you post your specification here,with your error info? |
OS: Ubuntu 22.04 lts I also installed sqlite3 but the error still persisted. BTW thanks for clarification |
I'm sorry I made a mistake in my previous reply,this plugin need If this didn't work,can you post your plugin's specification?That means the code you write in your packer.For instance,in my ubuntu nvim's config,it is the code like this: use {
"nvim-telescope/telescope-frecency.nvim",
config = function()
require"telescope".load_extension("frecency")
end,
requires = {"kkharji/sqlite.lua"}
} |
Thank you very much for your help it work but I had to do some tweaks inside vim then it could detect the file |
My pull request on kkharji/sqlite.lua has been merged thus there is no need of this work around on Linux as I have fixed this issue on linux |
Thanks very much, this fixes my problem |
Hello
I am using neovim 0.7.2 in Windows 10, sqlite installed via scoop
Installed via
But when I run, I always got
How can I fix this ?
The text was updated successfully, but these errors were encountered: