我正在尝试在Code Ocean中设置环境。我需要安装 Seurat 版本 3.2.0 或 3.2.3,它们不是最新的。CRAN 安装程序(在下图中)可以毫无问题地安装最新版本的 Seurat 4.0.1。但是当我指定版本(3.2.3)时,它无法安装
Seurat 安装允许通过以下方式安装早期版本
remotes::install_version("Seurat", version = "3.X.X")
我尝试使用 Code Ocean postsInstall 脚本,因为他们建议使用以下方法进行更指定的软件包安装:
#!/usr/bin/env bash
set -ex
echo "options(repos ='https://cran.rstudio.com/', \
unzip = 'internal', \
download.file.method ='libcurl', \
Ncpus = parallel::detectCores() )" >> /etc/R/Rprofile.site
Rscript -e "Sys.setenv(TAR = '/bin/tar'); \
install.packages('remotes'); \
remotes::install_version('Seurat', version='3.2.0')"
我也试过开发工具
#!/usr/bin/env bash
set -ex
echo "options(repos ='https://cran.rstudio.com/', \
unzip = 'internal', \
download.file.method ='libcurl', \
Ncpus = parallel::detectCores() )" >> /etc/R/Rprofile.site
Rscript -e "Sys.setenv(TAR = '/bin/tar'); \
install.packages('devtools'); \
devtools::install_version('Seurat', version='3.2.0')"
有一个巨大的日志文件。我认为所有的依赖项都安装好了。但这是与 Seurat 错误相关的最后几行