I need to install MELPA into my emacs 23.3 version. I have googled for the ways to install it but couldn't find/understand any of them.
Can anyone please help me with installing MELPA. I am using ubuntu 12.04
I need MELPA to install OmniSharp which will help for autocompletion in C#
MELPA is actually just a repository of emacs packages. The emacs package manager has been included in emacs since version 24. For 23.3 you first need to get a compatible version of
package.el
(there is one here).After putting
package.el
in yourload-path
, you then need to add MELPA to the list of repositories:From the EmacsWiki.
To then install OmniSharp, first refresh the package archive with
M-x package-refresh-contents
, then you can useM-x package-install
RETomnisharp
.