bash: python: command not found
作者:
来源:本站原创
点击数: 次
发布时间:2024年01月02日
问题描述:一般是不使用python命令的,但是用定制部提供的文件名大小写转换脚本需要用到,执行python命令后报bash: python: command not found
解决办法:在linux环境下基本都是默认安装了python的
1.find /usr/bin -iname 'python*'
/usr/bin/python3.6
/usr/bin/python3
2.ln -s /usr/bin/python3.6 /usr/bin/python
python版本号根据实际查询到的结果进行修改。