Command ‘python’ not found!解决Ubantu20 python 是 python3
使用环境
- Ubuntu 20.04.3 LTS
- Windows 11
问题
在 Ubuntu 20.04
已经安装 python3 ,但输入python
指令时,却收到以下提醒
$ python
Command 'python' not found, did you mean:
command 'python3' from deb python3
command 'python' from deb python-is-python3
但输入 python3
是不会报错的
$ python3
Python 3.8.10 (default, Sep 28 2021, 16:10:42)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
解决方式
安裝 python-is-python3
,指令如下
$ sudo apt install python-is-python3
安裝結果如下
还原只需要移除 python-is-python3
,移除指令如下
$ sudo apt remove python-is-python3
原文作者:孤飞-博客园