package-initialize:間違った型引数:arrayp、nil


29

通過しながら、C / C ++エディタとしてEmacsに、私は私の中に含めるために次のコード行に出くわした~/.emacsに接続するには、ファイル melpa archivesのパッケージのインストールに

(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
(package-initialize)

これらの行をemacsに保存した後、emacsを起動するwrong type argument: arrayp, nilと、ミニバッファー領域に

私が試したとき$ emacs --debug -init、私は得た:

Debugger entered--Lisp error: (wrong-type-argument arrayp nil)
  package--add-to-archive-contents(nil "melpa")
  package-read-archive-contents("melpa")
  package-read-all-archive-contents()
  package-initialize()
  eval-buffer(#<buffer  *load*> nil "/home/anupam/.emacs" nil t)  ; Reading at buffer position 905
  load-with-code-conversion("/home/anupam/.emacs" "/home/anupam/.emacs" t t)
  load("~/.emacs" t t)
  #[0 "\205\262�    \306=\203�\307\310Q\202;�   \311=\204�\307\312Q\202;�\313\307\314\315#\203*�\316\202;�\313\307\314\317#\203:�\320\nB\321\202;�\316\322\323\322\211#\210\322=\203a�\324\325\326\307\327Q!\"\323\322\211#\210\322=\203`�\210\203\243�\330!\331\232\203\243�\332!\211\333P\334!\203}�\211\202\210�\334!\203\207�\202\210�\314\262\203\241�\335\"\203\237�\336\337#\210\340\341!\210\266\f?\205\260�\314\323\342\322\211#)\262\207" [init-file-user system-type delayed-warnings-list user-init-file inhibit-default-init inhibit-startup-screen ms-dos "~" "/_emacs" windows-nt "/.emacs" directory-files nil "^\\.emacs\\(\\.elc?\\)?$" "~/.emacs" "^_emacs\\(\\.elc?\\)?$" (initialization "`_emacs' init file is deprecated, please use `.emacs'") "~/_emacs" t load expand-file-name "init" file-name-as-directory "/.emacs.d" file-name-extension "elc" file-name-sans-extension ".el" file-exists-p file-newer-than-file-p message "Warning: %s is newer than %s" sit-for 1 "default"] 7 "\n\n(fn)"]()
  command-line()
  normal-top-level()

私はemacsを初めて使用していますが、これを解決する方法を教えてください。

回答:


41

先日、これに遭遇しました。無効なパッケージアーカイブファイルが原因であると思います。即時修正は削除すること<user-emacs-directory>/elpa/archives/melpa/archive-contentsです。次の日に再構築されpackage-initializeます。残念ながら、package.elはこの種の障害に対してあまり堅牢ではありません。


あなたは右のそれは、多くのパッケージはチュートリアルシリーズで述べた以外にも..標準elpa.gnu.orgではありません...突然、この問題は、どこからともなく出てきた後、12時間についての私のために働いている
ラザロ

この問題を解決する他の方法はありませんか?
ラザロ

おそらくMELPAのバグ(package.elの回復力の欠如と組み合わされている)であると思うので、そこに問題を報告してください。
shosti

それが関連しているが、リポジトリのアドレスは変化がないように注意してください場合:今では推奨しています:(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
rvf0068

パッケージのアップグレード後に同じ問題が発生しました。修正は魅力的なものでした。ありがとう。
-rkachach

3

同じ問題があり、次の修正を適用しました。これは私のために働いた:

  • melpaアーカイブのアドレスを「http://melpa.org/packages」に変更します
  • 〜/ .emacs.d / elpa / archives / melpa / archive-contentsファイルを削除します
  • package-initializeおよびpackage-refresh-contentsを実行します。

.emacsファイルにpackage-refresh-contentsコマンドがあります。これにより、パッケージは常に最新の状態になりますが、emacsの起動時間は約2秒長くなります。

.emacsのパッケージ関連のコマンドは次のようになります。

;; Package system
(require 'package)
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
                         ("marmalade" . "https://marmalade-repo.org/packages/")
                         ("melpa" . "http://melpa.org/packages/")
                         ("user42" . "http://download.tuxfamily.org/user42/elpa/packages/")))
(package-initialize)

(package-refresh-contents)
(setq auto-install-packages
      '(color-theme bar-cursor htmlize flycheck flycheck-haskell
                    haskell-mode sml-mode rust-mode fsharp-mode nasm-mode go-mode
                    perl-mode web-mode )) ;;ffap-perl-module markdown-mode))
(dolist (pkg auto-install-packages)
  (unless (package-installed-p pkg)
    (package-install pkg)))

私はこの問題を頻繁に経験しています。この問題が発生するたびに〜/ .emacs.d / elpa / archives / melpa / archive-contentsファイルの削除を自動化する方法があるのだろうか。
トールキルフェルジュ

1
あなたalias rm_archive='rm -r <user-emacs-directory>/elpa/archives/melpa/archive-contents'はあなたの~/.bashrcファイルでどういう意味ですか?
SND
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.