R安装包前的一些配置 第一步 创建.Rprofile 写入以下内容1234567.libPaths("/home/jovyan/Rlibrary")options(BioC_mirror="https://mirrors.tuna.tsinghua.edu.cn/bioconductor")options(CRAN="http://mirrors.tuna.tsinghua.edu.cn/CRAN/")options(repr.plot.width=12, repr.plot.height=12)options(ggrepel.max.overlaps = Inf)Sys.setenv(R_REMOTES_NO_ERRORS_FROM_WARNINGS=TRUE)Sys.setenv(http_proxy="http://127.0.0.1:20809") 第二步 给git设置代理12git config --global http.proxy 'socks5://127.0.0.1:20808'git config --global https.proxy 'socks5://127.0.0.1:20808' 第三步 安装常用包管理12install.packages('BiocManager')install.packages('devtools') 第四步 一些常用的安装方法 R CMD 12345export C_INCLUDE_PATH=/opt/conda/include/freetype2export CPLUS_INCLUDE_PATH=/opt/conda/include/freetype2wget https://download.savannah.gnu.org/releases/freetype/freetype-2.11.1.tar.gzR CMD INSTALL systemfonts_1.0.3.tar.gz conda 安装依赖 1proxychains4 conda install jags conda 本地安装 1conda install --use-local boost-1.59.0-py27_0.tar.bz2 第五步 编辑.profile,连接时启动代理123456PIDS=`ps -ef grep 'xray run -c' grep -v grep awk '{print $2}'`if [ "$PIDS" != "" ]; thenecho "xray is runing!"elsexray run -c $HOME/etc/xui2.json >$HOME/log/xray.log 2>&1 &fi 超算基础 R安装包前的一些配置 https://b.limour.top/1292.html Author Limour Posted on December 7, 2021 Licensed under 使用sink在Jupyter中保存 R 输出 Previous Linux无root权限配置连接时自启后台程序 Next Please enable JavaScript to view the comments