M HYPE SPLASH
// updates

How to install sbt in its latest version in Ubuntu 14.04?

By Abigail Rogers

I am facing this Spark problem, after installing sbt like this. How to proceed please?

When hitting tab to this: sudo apt-get install s I do not see any sbt package.

1 Answer

You need to do this

echo "deb /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 642AC823
sudo apt-get update
sudo apt-get install sbt

to install sbt

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy