pebblexe
pebblexe

Reputation: 165

Why can't emacs find the haskell-mode package?

The error I am currently getting is:

File error: http://melpa.org/packages/haskell-mode-20161110.316.tar, Not found

when installing intero. How do I go about fixing this?

Thank you!

Upvotes: 2

Views: 909

Answers (1)

SerialDev
SerialDev

Reputation: 2847

Try this:

(package-refresh-contents)

In case you do not have melpa, since it is not available on the elpa repository:

(setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
                     ("marmalade" . "https://marmalade-repo.org/packages/")
                     ("melpa" . "https://melpa.org/packages/")))

Upvotes: 5

Related Questions