Ubuntu 14 环境无法识别 python

Ubuntu 14 环境无法识别 python

我有 Ubuntu 14。当我运行 python 时,我得到

/usr/bin/env: ‘python’: No such file or directory
bash: /usr/bin/python2.7: No such file or directory

答案1

看起来 Python 似乎没有为您安装。或者它已被删除,但留下了残留。

首先,运行以下命令:

sudo apt update
sudo apt install python -y

然后重试。如果不行,请发布which python和的输出ls -al /usr/bin/python*

相关内容