掌舵安装:包 emacs '24.4' 不可用

helm installation: Package emacs '24.4' unavailable

在emacs中安装helm时遇到错误

Package emacs '24.4' unavailable

我是 emacs 的新手,我在堆栈上看到 similar questions,但那里提供的解决方案并没有解决问题。

Type M-x locate-library RET package to find where Emacs is getting its package.el from. The path it shows should end with lisp/emacs-lisp/package.elc. If it doesn't, try getting rid of the indicated file (or changing the load path so Emacs doesn't find it).

有人可以帮忙吗?

下面是我的init.el文件(配置文件)

;; https://blog.aaronbieber.com/2015/05/24/from-vim-to-emacs-in-
fourteen-days.html 

(require 'package)

(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/"))
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(add-to-list 'package-archives '("melpa-stable" .  "http://stable.melpa.org/packages/"))

(setq package-enable-at-startup nil)
(package-initialize)

我的 emacs 版本是 24.3.1 全新安装。我已经加载了几次 init 文件。我在 ubuntu 14.04

您正在尝试安装需要 运行 Emacs 24.4 或更高版本的东西。

因此您收到错误

Package emacs '24.4' unavailable

因为

My emacs version is 24.3.1

如果您想安装该软件包,您需要升级到更新版本的 Emacs。