This package is to fetch taxonomy meta data from AlgaeBase.
YOUR_USERNAME
, and your password is YOUR_PASSWORD
.drwateR
via email mingsu@rcees.ac.cn.Install from server,
mycred <- git2r::cred_user_pass(username = "YOUR_USERNAME", password = "YOUR_PASSWORD") remotes::install_git("https://git.drwater.net/drwateR/phytoab.git", credentials = mycred)
If the Method 1 not works, try this:
First, download the package from server
mycred <- git2r::cred_user_pass(username = "YOUR_USERNAME", password = "YOUR_PASSWORD") git2r::clone("https://git.drwater.net/drwateR/phytoab.git", "phytoab", credentials = mycred)
Then, install it using remotes
package
remotes::install_git("phytoab")
After install it, you can remove the package folder manually, or run the following R command.
unlink("phytoab", recursive = T)