-
Notifications
You must be signed in to change notification settings - Fork 456
Installation on Windows
Noam Postavsky edited this page Aug 16, 2019
·
2 revisions
The lisp snippets for installing el-get download the full el-get installer via https, eg the "lazy installer":
;; So the idea is that you copy/paste this code into your *scratch* buffer,
;; hit C-j, and you have a working el-get.
(url-retrieve
"https://raw.githubusercontent.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(goto-char (point-max))
(eval-print-last-sexp)))
but the GNU Emacs releases for versions 25 and below don't support https out of the box on Windows. As of Emacs 26, the official GNU release does include the gnutls dlls (unless you choose the no-deps
zip file), so the extra steps below are no longer needed. As mentioned here, the needed dlls can be retrieved from http://sourceforge.net/projects/ezwinports/files/.
- Extract the
dll
s inbin
fromgnutls-3.4.15-w32-bin.zip
into Emacs'bin/
- but not the .exe files, otherwise you might hit emacs bug 15905.
- You will need to restart Emacs so it can notice the new dlls.