[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: Problems installing emacs-w3m cont.



Well, though I don't know what it is, I believe there should be
something bad in your configuration or ELisp package you use.
Even so, this installation way might work if your Emacs is not
broken:

$ emacs -Q -batch -l ./FILE

Where the contents of ``FILE'' are as follows:

;;--8<---------------cut here---------------start------------->8---
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/";))
(package-initialize)
(package-refresh-contents)
(package-reinstall 'w3m)
;;--8<---------------cut here---------------end--------------->8---

Replace `package-reinstall' with `package-install' if it is a
fresh install.