emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Installing Org through the new http://orgmode.org ELPA


From: Eric Schulte
Subject: Re: [O] Installing Org through the new http://orgmode.org ELPA
Date: Fri, 28 Sep 2012 12:59:36 -0600
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux)

Bastien <address@hidden> writes:

> Dear all,
>
> you can now install the Complete Org Edition (tm), which includes
> contributed files, from M-x list-packages RET.
>
> Add the new Org ELPA with:
>
> (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/";))
>
> Be aware that you will need to initialize packages early in your
> Emacs init file -- i.e. put (package-initialize) before setting any 
> Org options.
>
> Please read http://orgmode.org/elpa/ for details.
>
> Packages are not updated every day anymore, they are updated
> every week.  As these packages are created from the stable maint
> branch, a weekly basis seems reasonable.
>
> Thanks to those who help pushing this forward, especially Jambunathan,
> Achim and Eric!
>
> Enjoy,

This is great, thanks!

Perhaps the following elisp snippet on the orgmode.org/elpa page

    ;; -*- emacs-lisp -*-
    (package-initialize)    ;; Initialize Package
    (require 'org-install)  ;; Initialize Org
    ;; (setq org-...)       ;; Custom settings

should be expanded to

    ;; -*- emacs-lisp -*-
    (package-initialize)    ;; Initialize & Install Package
    (unless package-archive-contents (package-refresh-contents))
    (unless (package-installed-p 'org) (package-install 'org))
    (require 'org-install)  ;; Initialize Org
    ;; (setq org-...)       ;; Custom settings

-- 
Eric Schulte
http://cs.unm.edu/~eschulte



reply via email to

[Prev in Thread] Current Thread [Next in Thread]