我可以使用命令行安装Godot Engine吗?


Answers:


1

也许不是您想要的答案...

Launchpad上搅动,但目前没有PPA或任何看起来可用的东西。

我尝试下载已编译的二进制文件,但是运行它时它立即出现段错误:|

因此,我从Godot Engine GitHub页面下载了此版本(单击下载),并按照此处的说明在Ubuntu上进行编译。

安装依赖项:

sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev \
libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev \ 
libfreetype6-dev libssl-dev libudev-dev libxrandr-dev

解压缩源并输入目录:

cd Downloads      # or wherever you put it
tar xf godot*
cd godot*

现在运行:

scons platform=x11

编译之后,经过许多 CPU周期。二进制文件可以bin在源代码的顶级目录中的目录中找到。对我来说很好。您可以将其符号链接到PATH中的某个位置以更轻松地运行,也可以制作启动器。

我在16.10(Ubuntu MATE)。YMMV。


3

从这里改编的答案:https : //cialu.net/install-godot-game-engine-on-fedora-or-ubuntu/

首先,从Godot下载页面下载适合您系统的版本(32位或64位)。

打开终端窗口,然后输入:

unzip Godot_v2.1-stable_x11.64.zip

之后,将可执行文件移至/ opt文件夹:

sudo mkdir /opt/Godot/

sudo mv Godot_v2.1-stable_x11.64 /opt/Godot/Godot

并使其可执行:

sudo chmod +x /opt/Godot/Godot

然后,为Godot可执行文件创建和编辑启动器:

cd ~/.local/share/applications/

nano godot.desktop

填充.desktop文件,将其写入nano,用CTRL-O保存并用CTRL-X退出:

[Desktop Entry]
Name=Godot Engine

GenericName=Libre game engine
Comment=Multi-platform 2D and 3D game engine with a feature rich editor
Exec=/opt/Godot/Godot -pm
Icon=godot
Terminal=false
Type=Application
Categories=Development;IDE;

现在,您可以从桌面系统启动Godot。如果要自定义图标,只需将Godot图标放在主题中并命名godot


1
要自定义图标,请执行以下操作:icon.png从Godot生成的新项目中复制到~/.local/share/icons/godot.png,然后将.desktop文件更改为Icon=godot.png
TalkLittle

1

我首选的软件安装方式(如果有):

sudo snap install godot
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.