1

I'm trying to install this:

https://github.com/technomancy/emacs-starter-kit

I put the following into my ~/.emacs.d/init.el file:

(require 'package)
(add-to-list 'package-archives
             '("marmalade" . "http://marmalade-repo.org/packages/"))
(package-initialize)

I then go to run M-x eval-buffer and am told "Cannot open load file: package"

Any idea how I can get around this? I'm unsure what's wrong, but for what it's worth, there was previously no init.el file and my .emacs file doesnt exist either.

Sandro Munda
  • 39,921
  • 24
  • 98
  • 123
user592419
  • 5,103
  • 9
  • 42
  • 67

1 Answers1

2

The package.el used by emacs-starter-kit is for emacs 24.

There's the package.el file available for the emacs 23 : here

You should replace the package.el file

Greg A. Woods
  • 2,663
  • 29
  • 26
Sandro Munda
  • 39,921
  • 24
  • 98
  • 123