linguopeng.com:8787
100.75.29.54:8787
mamba create -n r4.2.2 -c conda-forge "r-base==4.2.2" -y
mamba activate r4.2.2
mamba install r-tidyverse -y
cp -rf /Users/guopenglin/mambaforge/envs/r4.2.2/lib/R/library /Users/guopenglin/data/docker_data/rstudio/guopenglin
# Get the current library paths
current_lib_paths <- .libPaths()
# Add a new library path
new_lib_paths <- c("/home/guopenglin/library",current_lib_paths)
# Set the new library paths
.libPaths(new_lib_paths)
.libPaths()
暂无评论