无法找到包monodevelop

时间:2014-07-19 07:18:55

标签: .net ubuntu monodevelop

我无法安装monodevelop我从终端运行它 - sudo apt-get install monodevelop但它出现错误无法找到包monodevelop如何在linux上安装monodevelop

是否有任何方法可以从ubuntu软件中心安装它

3 个答案:

答案 0 :(得分:1)

你绝对应该使用Git repo安装Monodevelop。 有正确的说明here

答案 1 :(得分:0)

  1. sudo apt install apt-transport-https dirmngr

  2. sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF

  3. echo "deb https://download.mono-project.com/repo/ubuntu vs-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-vs.list

  4. sudo apt update

确保完美复制此命令,在第3步中确保复制所有命令

答案 2 :(得分:0)

完成上述操作后: 使用第一个答案来解决monodevelop的问题,然后使用这个答案来安装MCS。

万一遇到任何问题,请尝试在命令下运行

sudo apt-get -f install

现在,安装mcs实用程序,该程序可以将C#编译为exe文件

sudo apt-get install mcs

创建一个c#文件。例如(这就是您命名c#文件的方式):“ newfile.cs”

示例代码

 //This is a c# program that prints out "Hello World"
    using System;
    using System.IO;
    using System.Text;

    namespace IncludeHelp
    {
        class Test
        {
            static void Main(string[] args)
            {
                //This is line will print out "Hello World"
                Console.WriteLine("Hello World");

                //This let's us exit the porgram when you press enter 
                Console.ReadLine();
            }
        }
    }

将文件另存为“ newfile.cs”

打开终端并输入mcs newfile.cs

这将编译文件并将其转换为.exe文件

现在在终端中输入以下mono newfile.cs

祝你好运!