Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$ yum install httpd-devel -bash: /usr/bin/yum: /usr/bin/python: bad interpreter: No such file or directory
我怎样才能解决这个问题?
任何 bash、Perl 或 Python 脚本的第一行都告诉 bash 在哪里可以找到正确的解释器。对于百胜是:
#!/usr/bin/python
您可以通过键入以下内容来判断 Python 的实际安装位置:
which python
解决此问题的最佳方法是添加符号链接。例如:
ln -s /usr/local/bin/python /usr/bin/python
这样你就不必在每个脚本中修复它。