错误:在奇点容器中找不到 python

错误:在奇点容器中找不到 python

我对于容器的使用还很陌生。

我正在使用奇点容器(我没有创建它,技术支持人员将它提供给我),当我使用 python --version 时出现此错误:

Singularity> python --version
bash: python: command not found

当我使用 which python 时什么也没有出现。

当我使用类型-a python时:

Singularity> type -a python
bash: type: python: not found

当我使用 ls -l 时:

Singularity> ls -l /usr/bin/python*
-rwxr-xr-x 1 root root 3628976 Sep 30 09:38 /usr/bin/python2.7
lrwxrwxrwx 1 root root      33 Sep 30 09:38 /usr/bin/python2.7-config -> x86_64-linux-gnu-python2.7-config
lrwxrwxrwx 1 root root       9 Oct 25  2018 /usr/bin/python3 -> python3.6
lrwxrwxrwx 1 root root      16 Oct 25  2018 /usr/bin/python3-config -> python3.6-config
-rwxr-xr-x 1 root root     384 Apr 11  2018 /usr/bin/python3-futurize
-rwxr-xr-x 1 root root     388 Apr 11  2018 /usr/bin/python3-pasteurize
-rwxr-xr-x 1 root root     364 Aug 22  2016 /usr/bin/python3-qr
-rwxr-xr-x 2 root root 4526456 Oct  8 08:12 /usr/bin/python3.6
lrwxrwxrwx 1 root root      33 Oct  8 08:12 /usr/bin/python3.6-config -> x86_64-linux-gnu-python3.6-config
-rwxr-xr-x 2 root root 4526456 Oct  8 08:12 /usr/bin/python3.6m
lrwxrwxrwx 1 root root      34 Oct  8 08:12 /usr/bin/python3.6m-config -> x86_64-linux-gnu-python3.6m-config
lrwxrwxrwx 1 root root      10 Oct 25  2018 /usr/bin/python3m -> python3.6m
lrwxrwxrwx 1 root root      17 Oct 25  2018 /usr/bin/python3m-config -> python3.6m-config

我在超级计算机上使用这个容器。我也尝试设置 pythonpath,但没有成功,仍然找不到 python。我也尝试设置 $PATH,但没有成功。我使用的是 Ubuntu 18.04。你有什么建议吗?非常感谢!

相关内容