jmunsch
jmunsch

Reputation: 24089

how to install dependencies for erlang

How to install erlang dependencies in ubuntu?

What is the recommended way to do this? What sort of tools are useful?

For example:

Is there an equivalent package manager for erlang? I saw something about rebar?

Or would it be more a process of tracking down each of the needed dependencies and compiling each, and placing them in $PATH?

Upvotes: 1

Views: 1873

Answers (1)

jmunsch
jmunsch

Reputation: 24089

Ah, rebar looks pretty decent.

I see it can be as simple as:

0) sudo apt-get install erlang-dev

1) setup a rebar.config

2) rebar get-deps

See:

Upvotes: 1

Related Questions