monodevelop cannot execute project

前端 未结 5 1443
情歌与酒
情歌与酒 2021-02-11 02:36

i have install monodevelop and write a hello world program in C# console but when in run configuration i choose run in external console check box and click on run button monodev

5条回答
  •  死守一世寂寞
    2021-02-11 03:11

    I had this problem on on Ubuntu 20.04 (using the latest monodevelop from PPA)

    It was because on 20.04,

    gnome-terminal-server had moved from /usr/lib/gnome-terminal/ to /usr/libexec/

    Monodevelop needs to be updated to take care of this.

    My temporary fix:

    cd /usr/lib
    sudo mkdir gnome-terminal
    sudo ln -s /usr/libexec/gnome-terminal-server
    

提交回复
热议问题