This function provides two methods for setting up LM Studio on your system.
The "browser" method opens the official download page for the LM Studio
desktop application (GUI). The "headless" method runs an automated
installation script to install the llmster daemon and CLI, which is
suitable for servers, containers, or users who prefer a GUI-less environment.
Usage
install_lmstudio(method = c("browser", "headless"))
Arguments
- method
Character. Either "browser" (opens the GUI download page) or
"headless" (installs the llmster daemon via script).
Value
Invisibly returns TRUE upon successful completion. This
function is primarily utilized for its side effects of opening a web
browser or executing system installation commands.
Examples
if (FALSE) { # \dontrun{
# Open your default web browser to the download page
install_lmstudio(method = "browser")
# Attempt automatic headless installation via the command line
install_lmstudio(method = "headless")
} # }