4

I have Ubuntu 14.04 I need this package http://packages.ubuntu.com/wily/rebar How do I install it?

2 Answers2

1

You can download a deb file for 64-bit or 32-bit Ubuntu.

I tested it. It installs on Ubuntu 14.04.3.

Download it to your Home folder and run

sudo dpkg -i rebar*.deb

If some dependencies are not installed, run

sudo apt-get install -f
Pilot6
  • 90,100
  • 91
  • 213
  • 324
1

first you have to install erlang using following commands:

sudo apt-get install erlang

this will install erlang and its dependencies then do

git clone git://github.com/rebar/rebar.git
cd rebar
./bootstrap

finally you will get like

this

check Version using command

sudo ./rebar -V
rebar 2.6.0 R16B03 20150915_025354 git 2.6.0-28-g894858d

i have tested this on Ubuntu 14.04

pl_rock
  • 11,297