[emacs-w3m:13705] Re: Problems installing emacs-w3m cont.
Katsumi Yamaoka <[email protected]> Thu, 26 Nov 2020 14:41:56 +0900
| Newsgroups | gmane.emacs.w3m |
|---|---|
| Organization | Emacsen advocacy group |
| Message-ID | <[email protected]> |
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.