说明:有时候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
评论