The El-Get documentation says that El-Get support is package.el and the MELPA documentation shows how to use MELPA with package.el . How do I install MELPA packages using El-Get?
Unsuccessful attempt
I use Emacs 23, so package.el not included with Emacs. I installed package.el using El-Get, but I'm not sure how to make El-Learn about MELPA. I tried adding
;; Based on http://melpa.milkbox.net/
to my init-package.el , which is received by El-Get, but I still do not see MELPA packages in El-Get (for example, with Mx el-get-list-packages ).
Update
I added
(require 'el-get-elpa) ;; Build the El-Get copy of the package.el packages if we have not ;; built it before. Will have to look into updating later ... (unless (file-directory-p el-get-recipe-path-elpa) (el-get-elpa-build-local-recipes))
to my init-package.el , as suggested in the accepted answer, and now everything works.
emacs melpa
ntc2
source share