Function: package-download-transaction

package-download-transaction is a byte-compiled function defined in package.el.gz.

Signature

(package-download-transaction PACKAGES)

Documentation

Download and install all the packages in PACKAGES.

PACKAGES should be a list of package-desc. This function assumes that all package requirements in PACKAGES are satisfied, i.e. that PACKAGES is computed using package-compute-transaction.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(defun package-download-transaction (packages)
  "Download and install all the packages in PACKAGES.
PACKAGES should be a list of `package-desc'.
This function assumes that all package requirements in
PACKAGES are satisfied, i.e. that PACKAGES is computed
using `package-compute-transaction'."
  (mapc #'package-install-from-archive packages))