/tmp/jenkins7096235955254701349.sh: line 3: python3: command not found
时间: 2023-12-29 20:05:08 浏览: 99
shell字符串截取报错:Bad substitution的解决
这个错误提示表明系统无法找到 python3 命令。可能是因为 Python3 没有正确安装或者没有添加到系统环境变量中。你可以尝试重新安装 Python3 或者检查系统环境变量中是否有正确的 Python3 路径。如果你使用的是 Linux 系统,可以尝试使用如下命令安装 Python3:
```
sudo apt-get install python3
```
如果你使用的是 Mac 系统,可以尝试使用如下命令安装 Python3:
```
brew install python3
```
如果你使用的是 Windows 系统,可以尝试从 Python 官网下载并安装 Python3。
阅读全文