Function: projectile-install-project

projectile-install-project is an autoloaded, interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-install-project ARG)

Documentation

Run project install command.

Normally you'll be prompted for a compilation command, unless variable compilation-read-command(var)/compilation-read-command(fun). You can force the prompt with a prefix ARG.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-install-project (arg)
  "Run project install command.

Normally you'll be prompted for a compilation command, unless
variable `compilation-read-command'.  You can force the prompt
with a prefix ARG."
  (interactive "P")
  (let ((command (projectile-install-command (projectile-compilation-dir)))
        (command-map (if (projectile--cache-project-commands-p) projectile-install-cmd-map)))
    (projectile--run-project-cmd command command-map
                                 :show-prompt arg
                                 :prompt-prefix "Install command: "
                                 :save-buffers t
                                 :use-comint-mode projectile-install-use-comint-mode)))