tags:

views:

82

answers:

2

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

+4  A: 

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.

Geoff Reedy
I went to these sites but it was not clear how to install them, they seem to only point to external zip files for individual packages. Am I looking in the wrong place?
Zubair
@Zubair I've expanded the answer with some information to help get you started with either of those options.
Geoff Reedy
+3  A: 

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.

Jon Gretar