I have Ubuntu 14.04 I need this package http://packages.ubuntu.com/wily/rebar How do I install it?
Asked
Active
Viewed 2,076 times
4
2 Answers
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
-
It install the right version?From the right repo?Because in the trusty there are version too and it is old one – user3027752 Sep 14 '15 at 20:13
-
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
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
packages.ubuntu.com
. The link is there. Click your architecture and you will get links. – Pilot6 Sep 14 '15 at 20:08