📌  相关文章
📜  无法在 ubuntu 中启动终端 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:49.092000             🧑  作者: Mango

代码示例1
#normally caused by python conflicts
$ sudo nano /usr/bin/gnome-terminal
#add correct version of python to the first line i.e change
    #!/usr/bin/python3
#to
    #!/usr/bin/python3.5 
    
Nb: dnt use python3.6 in  ubuntu 16(it breaks the default terminal)