Package listed in MELPA, but not found in package install

前端 未结 3 1572
忘掉有多难
忘掉有多难 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条回答
  •  清歌不尽
    2021-01-31 02:00

    In my .emacs file I have

    ;; packages
    (when (>= emacs-major-version 24)
      (require 'package)
      (package-initialize)
      (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
      )
    

    Then, M-x package-list-packages

    C-s ensime

    and there you go:

    ensime 20140718.... available ENhanced Scala Interaction Mode for Emacs

    Are you sure your emacs can actually get access to internet?

提交回复
热议问题