update-alternatives 对 /etc 符号链接没有影响吗?

update-alternatives 对 /etc 符号链接没有影响吗?

我希望python3python都指向当前的python3.10。我无法让它工作。以下是当前的命令

update-alternatives --install /usr/bin/python python $(which python3.10) 1
update-alternatives --install /usr/bin/python3 python3 $(which python3.10) 1

结果如下

ls -lrta /etc/alternatives | grep python3
lrwxrwxrwx 1 root root   18 Mar 23 16:26 python -> /usr/bin/python3.8
lrwxrwxrwx 1 root root   18 Mar 23 16:40 python3 -> /usr/bin/python3.8

这该如何运作?

注意:这是一个一次性使用的单任务Docker容器,不涉及任何 GUI,所以我不担心边缘化系统 Python 的副作用。我们不需要它,只需要 Python3.10

相关内容