Package listed in MELPA, but not found in package install

前端 未结 3 1569
忘掉有多难
忘掉有多难 2021-01-31 01:46

I am currently trying to install ENSIME for emacs 24.3.1 following the instructions at https://github.com/ensime/ensime-emacs under the quick start; I\'ve added



        
3条回答
  •  闹比i
    闹比i (楼主)
    2021-01-31 02:18

    I had to run M-x package-refresh-contents. Once I did that, the files were found.

    Here's what my .emacs looks like:

    (cond
     ((>= 24 emacs-major-version)
      (require 'package)
      (package-initialize)
      (add-to-list 'package-archives
               '("melpa-stable" . "http://stable.melpa.org/packages/") t)
      (package-refresh-contents)
     )
    )
    

提交回复
热议问题