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
NOTE: Some of the issues below may not be directly related to this emacs repo, but I wanted to document all the issues I faced when installing/setting up emacs on my Raspberry Pi.
Steps:
Installed emacs using sudo apt install emacs. This installed version 26.1
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities`
;; and `package-pinned-packages`. Most users will not need or want to do this.
;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
(package-initialize)
Also needed to add this section from "Failed to download ‘MELPA’ archive" on the melpa link above.
-- Error: Failed to download 'gnu' archive. Bad request
-- Fix: (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
Open emacs once using this temporary init.el file installed melpa successfully
Then switched back to init.el from the git repo and it was able to open and install most of the packages.
Now emacs opens with the following errors
Error (use-package): Failed to install mastodon: Package emacs-27.1 is unavailable
Error (use-package): Cannot load org-entities
Error (use-package): ob/:init: Cannot open load file: No such file or directory, org
Error (use-package): org-sticky-header/:catch: Cannot open load file: No such file or directory, org
Error (use-package): org-link-ref/:catch: Symbol s function definition is void: org-add-link-type
Error (use-package): toc-org/:catch: Cannot open load file: No such file or directory, org
Error (use-package): org-noter/:catch: Cannot open load file: No such file or directory, org
Error (use-package): desktop/:config: Cannot open load file: No such file or directory, org
Simple solution is to probably install at least emacs 27.1 or above, but unsure of the best way to do that. I assumed sudo apt install emacs would install the most recently released version. Can you please advise?
The text was updated successfully, but these errors were encountered:
NOTE: Some of the issues below may not be directly related to this emacs repo, but I wanted to document all the issues I faced when installing/setting up emacs on my Raspberry Pi.
Steps:
sudo apt install emacs
. This installed version 26.1-- Error: Failed to download 'gnu' archive. Bad request
-- Fix:
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
Simple solution is to probably install at least emacs 27.1 or above, but unsure of the best way to do that. I assumed
sudo apt install emacs
would install the most recently released version. Can you please advise?The text was updated successfully, but these errors were encountered: