R
Install
Config
- https://mirrors.tuna.tsinghua.edu.cn/help/CRAN/
cat > ~/.Rprofile << 'EOF'
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/"))
options(BioC_mirror="https://mirrors.tuna.tsinghua.edu.cn/bioconductor")
EOF
- https://microsoft.github.io/language-server-protocol/
- https://github.com/REditorSupport/languageserver/
# languageserver依赖项
sudo apt install build-essential libcurl4-openssl-dev libssl-dev libxml2-dev
# 在bash中为系统R安装特定包,并安装包推荐依赖
Rscript -e "install.packages('languageserver', dependencies=TRUE)"
Packages
Tip
install.packages("reticulate")
install.packages("tidyverse")
install.packages("BiocManager")
install.packages("ape")
install.packages("adegenet")
install.packages("phangorn")
BiocManager::install("ggtree")
BiocManager::install("msa")
BiocManager::install("bios2mds")
BiocManager::install("Biostrings")