ctmmweb
package from github.ctmmweb
app.Install R
Download R installer(win, mac, Linux) and install R.
RStudio is recommended but not a must.
Start R
Start R console
from start menu (or RStudio if installed). All code below will run inside it.
Install app
if (!require("remotes")) install.packages("remotes") remotes::install_github("ctmm-initiative/ctmmweb")
Run app
ctmmweb::app()
r-base-dev
too.We recommend to use remotes
instead of devtools
as remotes
has much less dependencies and often have less package installation problems(because devtools itself need many more packages which cannot be upgraded easily in one session).
If you are using devtools
, it need libcurl
, ssl
in linux if it’s not already installed in your system. You can watch error messages to check what is required. I installed them in Linux Mint 18 with
sudo apt-get install libcurl4-openssl-dev
sudo apt-get install libssl-dev
ctmm
need rgdal
, which need another two libraries in linux:
sudo apt-get update && sudo apt-get install libgdal-dev libproj-dev