个人笔记不保证成功
一.启动某个程序报错
/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
2023-12-01 11:17:04
/usr/bin/env: ‘python’: No such file or directory
python3 --version
whereis python3
sudo ln -s /usr/bin/python3 /usr/bin/python