linux环境提示:-bash: python: command not found 错误的解决方法

Pan 2021-12-1816:46:52未分类3033

说明:有时候VPS新换系统尝试运行Python程序时,服务器会返回-bash: python: command not found 错误指令,从报错异常可以看出,可能是python环境未安装。这里说下安装方法:文章源自盘云志-https://www.pyunz.com/16.html

1、安装文章源自盘云志-https://www.pyunz.com/16.html

Ubuntu/Debian系统:文章源自盘云志-https://www.pyunz.com/16.html

apt-get install python
或者
apt-get install python3

CentOS系统:文章源自盘云志-https://www.pyunz.com/16.html

yum install python

2、检查文章源自盘云志-https://www.pyunz.com/16.html

type -a python
which python
ls -l /usr/bin/python
ls -l /usr/bin/python*

结果有python版本信息即表示已经安装成功!文章源自盘云志-https://www.pyunz.com/16.html

Pan
  • 本文由 发表于 2021-12-1816:46:52
  • 转载请务必保留本文链接:https://www.pyunz.com/16.html