melpa

How do I install MELPA packages via El-Get?

夙愿已清 提交于 2019-12-09 17:19:25
问题 The El-Get documentation says that El-Get supports package.el and the MELPA documentation shows how to use MELPA with package.el. How do I install MELPA packages using El-Get? Failed Attempt I'm using Emacs 23, so package.el is not part of Emacs. I installed package.el using El-Get, but I'm not sure how to make El-Get aware of MELPA. I tried adding ;; Based on http://melpa.milkbox.net/#/getting-started . (require 'package) (add-to-list 'package-archives ;; The 't' means to append, so that

Error updating emacs packages: Failed to download 'gnu' archive

巧了我就是萌 提交于 2019-12-09 04:36:48
问题 My init.el uses this to initialize packages: (package-initialize) (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/")) (add-to-list 'package-archives '("melpa-stable" . "http://melpa-stable.milkbox.net/packages/")) When I do M-x package-refresh-contents I get the following error: Failed to download `gnu' archive. M-x toggle-debug-on-error gives me this stacktrace: Debugger entered--Lisp

Error updating emacs packages: Failed to download 'gnu' archive

孤人 提交于 2019-12-03 04:55:22
My init.el uses this to initialize packages: (package-initialize) (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/")) (add-to-list 'package-archives '("melpa-stable" . "http://melpa-stable.milkbox.net/packages/")) When I do M-x package-refresh-contents I get the following error: Failed to download `gnu' archive. M-x toggle-debug-on-error gives me this stacktrace: Debugger entered--Lisp error: (error "Failed to verify signature archive-contents.sig: (\"No public key for 474F05837FBDEF9B

Package listed in MELPA, but not found in package install

末鹿安然 提交于 2019-12-02 17:50:44
I am currently trying to install ENSIME for emacs 24.3.1 following the instructions at https://github.com/ensime/ensime-emacs under the quick start; I've added (require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t) (package-initialize) (when (not package-archive-contents) (package-refresh-contents)) to my .emacs file, as instructed. However, when I restart and do M-x package install [RETURN]ensime[RETURN], it returns [No Match] and indeed, I can't find it when I list the packages. However, I can easily find it at http://melpa.milkbox.net/# ; what