Next: Installing from the Git Repository, Up: Installation [Contents]
Org-roam is available from Melpa and Melpa-Stable. If you haven’t used Emacs’ package manager before, you may familiarize yourself with it by reading the documentation in the Emacs manual, see info:emacs#Packages. Then, add one of the archives to ‘package-archives’:
(require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
(require 'package) (add-to-list 'package-archives '("melpa-stable" . "http://stable.melpa.org/packages/") t)
Once you have added your preferred archive, you need to update the local package list using:
M-x package-refresh-contents RET
Once you have done that, you can install Org-roam and its dependencies using:
M-x package-install RET org-roam RET
Now see Post-Installation Tasks.