如何使用命令行安装戈多引擎?戈多引擎有PPA吗?我正在等待命令像sudo apt-get install godot-engine
一样安装它。
发布于 2017-11-29 05:10:14
从这里改编的答案:https://cialu.net/install-godot-game-engine-on-fedora-or-ubuntu/
首先,从戈多下载网页下载适合您的系统的版本(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
然后,创建并编辑戈多可执行文件的启动程序:
cd ~/.local/share/applications/
nano godot.desktop
填充.desktop文件,用nano编写该文件,用CTRL保存并使用CTRL退出:
[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
。
发布于 2018-08-26 02:52:37
我喜欢安装软件的方式(如果可用的话):
sudo snap install godot
https://askubuntu.com/questions/888399
复制相似问题