Skip to content

Installation

Install the stable version for production, or install the dev version if you want the latest features but it may be somewhat unstable.

Stable

The stable version is available from CRAN.

1
install.packages("log")

Dev

The dev version can be obtained from Github in a variety of ways.

remotes

You can use the remotes package.

1
2
# install.packages("remotes")
remotes::install_github("devOpifex/titan")

pak

You can use the pak package.

1
2
# install.packages("pak")
pak::pkg_install("devOpifex/titan")

devtools

You can use the devtools package.

1
2
# install.packages("devtools")
devtools::install_github("devOpifex/titan")