在本教程中,我们将向您展示如何在 Ubuntu 20.04 LTS 上安装 Erlang。 对于那些不知道的人,Erlang 是一种编程语言,用于构建具有高可用性要求的可大规模扩展的软实时系统。 Erlang 运行时系统内置了对并发、分布和容错的支持。
本文假设您至少具备 Linux 的基本知识,知道如何使用 shell,最重要的是,您将网站托管在自己的 VPS 上。 安装非常简单,假设您在 root 帐户下运行,如果不是,您可能需要添加 ‘sudo
‘ 到命令以获取 root 权限。 我将向您展示在 Ubuntu 20.04 (Focal Fossa) 上逐步安装 Erlang 编程语言。 对于 Ubuntu 18.04、16.04 和任何其他基于 Debian 的发行版(如 Linux Mint),您可以按照相同的说明进行操作。
在 Ubuntu 20.04 LTS Focal Fossa 上安装 Erlang
步骤 1. 首先,通过运行以下命令确保所有系统包都是最新的 apt
终端中的命令。
sudo apt update sudo apt upgrade
步骤 2. 在 Ubuntu 20.04 上安装 Erlang。
现在我们通过运行以下命令将存储库添加到您的 Ubuntu 系统:
echo "deb https://packages.erlang-solutions.com/ubuntu focal contrib" | sudo tee /etc/apt/sources.list.d/rabbitmq.list
之后,更新你的系统包列表并安装 Erlang:
sudo apt update sudo apt install erlang
安装完成,为了验证它,我们必须使用 Shell Erlang,通过提交命令行:
[email protected]:~$ erl Erlang/OTP 23 [erts-11.1] [source] [64-bit] [smp:6:6] [ds:4:4:16] [async-threads:2] Eshell V11.1 (abort with ^G)
步骤 3. 使用 Hello World 程序测试 Erlang。
现在我们通过编写一个简单的 Hello World Erlang 代码进行测试:
nano hellotest.erl
添加以下文件:
% Test to display Hello World Erlang Code -module(hellotest). -import(io,[fwrite/1]). -([helloworld/0]). helloworld() -> fwrite("Hai Guys.. , Erlang World!n").
Save 和 close,之后使用以下命令执行:
[email protected]:~$ erl Erlang/OTP 23 [erts-11.1] [source] [64-bit] [smp:6:6] [ds:4:4:16] [async-threads:2] Eshell V11.1 (abort with ^G) 1> c(hellotest). {ok,hellotest} 2> hellotest01,helloworld(). ** exception error: undefined shell command helloworld/0 3> hellotest01:helloworld(). Hai Guys.. , Erlang World! ok
恭喜! 您已成功安装 Erlang。 感谢您使用本教程在您的 Ubuntu 20.04 LTS Focal Fossa 系统上安装 Erlang 编程语言。 如需其他帮助或有用信息,我们建议您查看 Erlang 官方网站.