本文主要是介绍解决报错/usr/bin/env: ‘python’: No such file or directory,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
个人笔记不保证成功
一.启动某个程序报错
/usr/bin/env: ‘python’: No such file or directory
二.解决方法
1.查看python3的版本
python3 --version
2.查找python3的安装位置:
whereis python3
3.为其创建符号连接:
sudo ln -s /usr/bin/python3 /usr/bin/python
4.尝试再次启动
这篇关于解决报错/usr/bin/env: ‘python’: No such file or directory的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!