bash: /usr/lib/command-not-found: /usr/bin/python3: bad interpreter: No such file or directory(已解决)

1.cd /usr/bin/

ls python*

 会看到红色的python,说明连接出问题了

2.删除它

sudo rm -rf /usr/bin/python
3.再ls python*,发现已经删除

sudo ln -s /usr/bin/python3.10 /usr/bin/python3

没有再报错

白菜一颗,有问题会及时改正 

 

你可能感兴趣的:(bash,ubuntu,linux,python)