云网牛站
所在位置:首页 > Linux教程 > 在Ubuntu 18.04系统中安装Erlang并测试的方法

在Ubuntu 18.04系统中安装Erlang并测试的方法

2018-12-25 10:45:30作者:秦风稿源:云网牛站

本文介绍如何在Ubuntu 18.04 LTS系统中安装Erlang的方法。

 

第1步、导入Erlang GPG密钥

运行以下命令以导入Erlang存储库GPG密钥:

wget -O- https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc | sudo apt-key add -

 

第2步、添加Erlang存储库

导入密钥后,通过运行以下命令将存储库添加到Ubuntu 18.04系统中:

echo "deb https://packages.erlang-solutions.com/ubuntu bionic contrib" | sudo tee /etc/apt/sources.list.d/rabbitmq.list

 

第3步、在Ubuntu 18.04中安装并测试Erlang

1、以下是Erlang的安装步骤,更新Ubuntu 18.04系统包列表并安装Erlang的命令:

sudo apt update

sudo apt -y install erlang

2、要启动Erlang shell,请运行以下命令:

# erl

Erlang/OTP 21 [erts-10.1] [source] [64-bit] [smp:2:2] [ds:2:2:10] [async-threads:1]

Eshell V10.1 (abort with ^G)

1>

3、启动shell后,将打印测试一下,可以通过编写简单的Hello World Erlang代码进行测试:

$ cat hello.erl

% This is a test Hello World Erlang Code

-module(hello).

-import(io,[fwrite/1]).

-export([helloworld/0]).

helloworld() ->

fwrite("Hello, Erlang World!\n").

4、从Erlang shell编译它,不要忘记每个命令结束时的句号:

$ erl

Erlang/OTP 21 [erts-10.1] [source] [64-bit] [smp:2:2] [ds:2:2:10] [async-threads:1]

Eshell V10.1  (abort with ^G)

1> c(hello).

{ok,hello}

5、然后从Erlang shell运行程序:

2> hello:helloworld().

Hello, Erlang World!

ok

3>

6、最后的成果,请看下面的截图:

在Ubuntu 18.04系统中安装Erlang并测试的方法

至此,你的Ubuntu 18.04 LTS系统桌面上有一个Erlang了,这意味着安装成功了。

 

相关主题

安装Windows 10和Ubuntu 18.04实现双系统启动的方法

精选文章
热门文章