The problem is quite simple :
I want to use org-roam on my Emacs on my Windows 10 laptop, and for a mysterious reason, it just won't work.
What I have done :
- I have installed org-roam by adding those lines in my
.emacs.d/init.el
file :
(use-package org-roam
:ensure t
:custom
(org-roam-directory "~/RoamNotes")
:bind (("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)
("C-c n i" . org-roam-node-insert)))
- I have
emacsql
andemacsql-sqlite
installed by adding those lines in my.emacs.d/init.el
file :
(use-package emacsql
:ensure t)
(use-package emacsql-sqlite
:ensure t)
- I have
sqlite3
installed :
λ sqlite3.exe
SQLite version 3.41.2 2023-03-22 11:56:21
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite>
- The path to
sqlite3.exe
is in myPATH
environment variable and inexec-path
emacs' variable.
What does it do :
When opening a file ~/Documents/RoamNotes/test.org
and hitting C-c n i
(org-roam-node-insert) or C-c n f
(org-roam-node-find) to insert or find a node, I get the message Process emacsql-sqlite not running