singularity-containers

如何在 Singularity 配方文件的设置部分使用 $SINGULARITY_ROOTFS 设置相对软链接?
singularity-containers

如何在 Singularity 配方文件的设置部分使用 $SINGULARITY_ROOTFS 设置相对软链接?

我正在尝试在 Singularity 配方文件的部分中创建软链接%setup。如果链接是相对的,则不起作用。例如: ln -s ${SINGULARITY_ROOTFS}../python2/2.7.5a ${SINGULARITY_ROOTFS}/usr/pkgs/python/2.7.5 它创建: lrwxrwxrwx 1 root root 49 Apr 24 06:33 /tmp/build-temp-976030219/rootfs/usr/pkgs/python/2.7.5 -> /tmp/build-temp-976030219/roo...

Admin

如何在 singularity 中运行 conda 命令?
singularity-containers

如何在 singularity 中运行 conda 命令?

我想使用 singularity 运行 conda 命令。该命令是: singularity exec ~/dockerimage.sif conda 它会产生一个错误: /.singularity.d/actions/exec: 9: exec: conda: Permission denied 这是我的docker文件: FROM ubuntu:20.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y apt-utils wg...

Admin