all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [beginner] better-defaults not found
@ 2020-10-19 21:48 c.buhtz
  2020-10-19 23:02 ` Stefan Kangas
  2020-10-20 19:41 ` Jean Louis
  0 siblings, 2 replies; 4+ messages in thread
From: c.buhtz @ 2020-10-19 21:48 UTC (permalink / raw)
  To: help-gnu-emacs

Hello at all,

I am a long year but low level vim user not moving to
emacs (primary for Python).

I tried to edit my ~/.emacs file (on Debian 10 stable) based on that
emacs-for-python-tutorial
https://realpython.com/emacs-the-best-python-editor/#initialization-file

When re-starting emacs I got the error that

/better-defaults-20170614.404.el, Not found

First of all I am confused about the version number because melpa.org
shows me "20200717.2012" for that package. I can understand that the
current package is not found. But I do not understand where the old
version number emacs using for this package comes from.

This is my .emacs (comment lines removed)

(when (>= emacs-major-version 24)
  (require 'package)
  (add-to-list
   'package-archives
    '("melpa" . "https://melpa.org/packages/")
   t))

(package-initialize)
(package-refresh-contents)
(defvar myPackages
  '(better-defaults
    material-theme
    )
  )

(mapc #'(lambda (package)
	  (unless (package-installed-p package)
	    (package-install package)))
      myPackages)



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-10-20 20:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-19 21:48 [beginner] better-defaults not found c.buhtz
2020-10-19 23:02 ` Stefan Kangas
2020-10-20 20:37   ` c.buhtz
2020-10-20 19:41 ` Jean Louis

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.