Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there something like gem for erlang?

Tags:

erlang

Is there a simply plug in system like gem for erlang as I find it quite complicated to install third party software?

like image 764
yazz.com Avatar asked Dec 09 '22 17:12

yazz.com


2 Answers

The Comprehensive Erlang Archive Network and Faxien are two packages that provide an easy way to install erlang libraries.

Neither of these are bundled with erlang so first need to be installed. Then you can use them to download other software.

CEAN is available either as a library to add to an existing erlang installation or as an all-in-one install including an erlang distribution. Get CEAN from CEAN download page and then read the CEAN documentation to see how to use it.

For Faxien the best is to follow the tutorial. Once it's installed you can use faxien help to find what you can do next.

like image 121
Geoff Reedy Avatar answered Jan 02 '23 00:01

Geoff Reedy


It's not difficult though to install 3rd party libraries. Just unzip/clone/whatever as a subfolder to the directory you define in the ERL_LIBS environment variable.

like image 35
Jon Gretar Avatar answered Jan 02 '23 01:01

Jon Gretar