誤ってディレクトリを削除しましたが、/usr/bin/python
yumコマンドは使用できません。エラーが発生します。
/usr/bin/python: bad interpreter: No such file or directory on centos 7
環境: CentOS 7
答え1
/usr/bin/python
シンボリックリンクです:
╰─$ ls -la python
lrwxrwxrwx 1 root root 7 Jan 15 20:56 python -> python3
╰─$ ls -la python3
lrwxrwxrwx 1 root root 10 Jan 15 20:56 python3 -> python3.10
╰─$ ls -la python3.10
-rwxr-xr-x 1 root root 14168 Jan 15 20:56 python3.10
pythonという名前のすべてのファイルを削除しない限り、単に以下を実行して問題を解決できます.ln -s /usr/bin/python3 /usr/bin/python