Installs Torch and its dependencies.
install_torch(
version = "1.5.0",
type = install_type(version = version),
reinstall = FALSE,
path = install_path(),
...
)
The Torch version to install.
The installation type for Torch. Valid values are "cpu"
or the 'CUDA' version.
Re-install Torch even if its already installed?
Optional path to install or check for an already existing installation.
other optional arguments (like load
for manual installation.)
When using path
to install in a specific location, make sure the TORCH_HOME
environment
variable is set to this same path to reuse this installation. The TORCH_INSTALL
environment
variable can be set to 0
to prevent auto-installing torch and TORCH_LOAD
set to 0
to avoid loading dependencies automatically. These environment variables are meant for advanced use
cases and troubleshootinng only.