diff options
author | Noboru Ota <[email protected]> | 2021-08-09 13:37:25 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-09 11:37:25 +0000 |
commit | 410be28d0ad7e3f792392bb23e8f09e9becf4762 (patch) | |
tree | 080ab3c3ab049875d07c67978e1edad1aee90956 | |
parent | f57f659a5f56909fb79f42083f47247d2d48567b (diff) |
doc: README manual installation (#51)
- Add installing `simple-httpd`
I had an error loading org-roam-ui (on Emacs 27.2 vanilla)
- Remove `(require 'webisocket)
Redundant; it's required at the top of org-roam-ui)
I confirm that this works on my end -- Emacs 27.2 vanilla on Windows.
Thank you.
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,10 +17,11 @@ org-roam-ui requires `org-roam`, `websocket`, `simple-httpd`, `f` and Emacs >= 2 ### Manually -Install `websocket.el` +Install `websocket.el` and `simple-httpd` ```emacs-lisp M-x package-install websocket +M-x package-install simple-httpd ``` Clone the repo: @@ -33,7 +34,6 @@ git clone [email protected]:org-roam/org-roam-ui.git Load in Emacs (add to config): ```lisp -(require 'websocket) (add-to-list 'load-path "~/.emacs.d/private/org-roam-ui") (load-library "org-roam-ui") ``` |