Note necessity of using GNU ELPA archive (see #634)

This commit is contained in:
Steve Purcell 2013-04-01 20:05:42 +01:00
parent 8d535c49ca
commit dd39f68f1d

View file

@ -142,6 +142,11 @@
<pre><code>(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)</code></pre>
<p>In Emacs &lt; 24, you'll also need to explicitly include the GNU
ELPA archive, which provides important compatibility libraries like <code>cl-lib</code>:</p>
<pre><code>(when (< emacs-major-version 24)
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))</code></pre>
<p>
Please read about <a href="#known-issues">known issues</a>
below before attempting to install multiple packages at once.