Skip to content

Instantly share code, notes, and snippets.

@pgroce
Created March 4, 2013 14:41
Show Gist options
  • Save pgroce/5082654 to your computer and use it in GitHub Desktop.
Save pgroce/5082654 to your computer and use it in GitHub Desktop.
(defun pg/package-install (package &optional repository)
"Install PACKAGE if it has not yet been installed.
If REPOSITORY is specified, use that."
(unless (package-installed-p package)
(let ((package-archives (if repository
(list (assoc repository package-archives))
package-archives)))
(package-install package))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment