Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

up vote 6 down vote accepted

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.

share|improve this answer
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 Feb 2 '10 at 17:24
1  
@Zubair I've expanded the answer with some information to help get you started with either of those options. – Geoff Reedy Feb 2 '10 at 17:39
@Gueoff - It looks interesting... I'll watch out for changes to it. Thanks – Zubair Mar 7 '11 at 16:51

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.

share|improve this answer

There's also agner http://erlagner.org/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.