#!/bin/sh | |
# one way (older scala version will be installed) | |
# sudo apt-get install scala | |
#2nd way | |
sudo apt-get remove scala-library scala | |
wget http://www.scala-lang.org/files/archive/scala-2.11.4.deb | |
sudo dpkg -i scala-2.11.4.deb | |
sudo apt-get update | |
sudo apt-get install scala | |
# sbt installation | |
# remove sbt:> sudo apt-get purge sbt. | |
wget http://dl.bintray.com/sbt/debian/sbt-0.13.6.deb | |
sudo dpkg -i sbt-0.13.6.deb | |
sudo apt-get update | |
sudo apt-get install sbt |
This comment has been minimized.
This comment has been minimized.
Thanks, nazar-art! |
This comment has been minimized.
This comment has been minimized.
DavidGamba
commented
Oct 14, 2013
I am looking for a good way of doing this and I prefer the solutions based on update-alternatives. Also your solution doesn't include the man pages. Thanks for sharing though :) |
This comment has been minimized.
This comment has been minimized.
choffmeister
commented
Nov 8, 2013
Nice script. By now there is an official .deb package at http://www.scala-lang.org/files/archive/scala-2.10.3.deb |
This comment has been minimized.
This comment has been minimized.
mujain
commented
Jul 3, 2014
I do not get it.. above script indeed uses the same .deb package you mentioned. So what is the difference ? Thx |
This comment has been minimized.
This comment has been minimized.
javadba
commented
Jul 13, 2014
Please update the sbt: wget http://dl.bintray.com/sbt/debian/sbt-0.13.5.deb |
This comment has been minimized.
This comment has been minimized.
chenrui333
commented
Aug 1, 2014
wget http://www.scala-lang.org/files/archive/scala-2.11.2.deb |
This comment has been minimized.
This comment has been minimized.
Thanks @javadba and @chenrui333 |
This comment has been minimized.
This comment has been minimized.
goFrendiAsgard
commented
Aug 22, 2014
@chenrui333 |
This comment has been minimized.
This comment has been minimized.
poliu2s
commented
Sep 11, 2014
Thanks! After installing this way though, I get duplicate sources.list entries... is anyone else getting that when doing an sudo apt-get update? |
This comment has been minimized.
This comment has been minimized.
maizy
commented
Oct 2, 2014
Thanks for idea. I've made some changes to this script for using java7 dependency instead of java6: https://gist.github.com/maizy/c4d31c1f539694f721f6 |
This comment has been minimized.
This comment has been minimized.
bjing
commented
Dec 27, 2014
Hey, you've already installed scala and sbt using the deb packages, why do you follow that with "apt-get install" of these packages? |
This comment has been minimized.
This comment has been minimized.
dunnock
commented
Mar 27, 2015
scala: scala-2.11.6.deb |
This comment has been minimized.
nazar-art commentedAug 11, 2013
you should change to http://www.scala-lang.org/download/ - scala-2.10.2.tgz