如何在 Ubuntu 上运行 Minecraft-Console-Client?

如何在 Ubuntu 上运行 Minecraft-Console-Client?

我想安装 GitHub 应用程序这里。问题是,根据 README.txt 文件配置文件夹,我需要运行

mono MinecraftClient.exe

但该命令只返回

无法打开程序集“MinecraftClient”.exe:没有此文件或目录

我不知道该怎么做,因为我根本不擅长编程。如能得到任何帮助我将不胜感激。 该程序是用 C# 编写的

我正在使用仅有终端的 Ubuntu 版本,所以没有桌面。

答案1

作为自述声明,您不必从源代码构建项目 - 只需MinecraftClient.exe从以下位置获取最新的开发版本():

https://ci.appveyor.com/project/ORelio/minecraft-console-client/build/artifacts

以下是 Ubuntu 上所需步骤的摘要:

  1. 安装 Mono:sudo apt-get install mono-runtime libmono-reflection-cil
  2. MinecraftClient.exe从上述链接下载
  3. 跑步mono MinecraftClient.exe

相关内容