如何在 shell 脚本中从奇点容器内部运行奇点容器和 python 代码?
我正在尝试启动一个 singularity 容器,然后在该容器内运行一个 python 脚本。如果我在外部运行这些命令,它们会单独运行,但是一旦我将它们放入 shell 脚本并运行该 shell 脚本,python 脚本就不会执行,直到我关闭 singularity 环境。这是脚本 #!/bin/bash singularity run /home/___/singularity_containers/singularity_container.simg bash python3 /home/___/__/__/src/hello_world.py 如果我...