python3: command not found
时间: 2023-11-14 15:10:11 浏览: 447
这个错误提示表明你的系统中没有安装 Python 3。你需要先安装 Python 3,然后才能在命令行中使用 python3 命令。你可以通过以下命令来安装 Python 3:
在 Ubuntu 系统中:
```
sudo apt-get update
sudo apt-get install python3
```
在 CentOS 系统中:
```
sudo yum update
sudo yum install python3
```
在 macOS 系统中,你可以通过 Homebrew 来安装 Python 3:
```
brew update
brew install python3
```
相关问题
python bash: python3: command not found
这个错误提示表明你的系统中没有安装 Python3。你需要先安装 Python3 才能在终端中使用它。如果你使用的是 Linux 或 macOS 系统,可以通过以下命令安装 Python3:
```
sudo apt-get install python3
```
如果你使用的是 Windows 系统,可以从 Python 官网下载安装程序进行安装。
bash: python3: command not found
这个错误提示是因为你的系统中没有安装 Python3 或者没有将 Python3 添加到系统环境变量中。你需要先安装 Python3 并将其添加到系统环境变量中,才能在终端中使用 Python3 命令。
阅读全文