1

I am new to Erlang and I need to install jiffy on my Mac.

When I make / rebar compile, jeffy compiles without any errors. But I cant use it anywhere from shell.

Do I have to copy .so files? How should I install erlang modules generally? I came from Python world.

Farshid Ashouri
  • 16,143
  • 7
  • 52
  • 66
  • 1
    Are you about this? http://stackoverflow.com/questions/1236950/add-path-to-erlang-search-path –  Jun 10 '16 at 15:14
  • Erlang has its release system and a lot of tools that make development, releasing and environment setup easy. More, enough information in the net provided on this topic. – Lol4t0 Jun 11 '16 at 17:56

1 Answers1

0

Start erlang shell with (after compilation):

 erl -pa <jiffypath>/ebin/
Farshid Ashouri
  • 16,143
  • 7
  • 52
  • 66