Skip to content

Instantly share code, notes, and snippets.

View bahmanshams's full-sized avatar
😂
Focusing

Bahman Shams bahmanshams

😂
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bahmanshams on github.
  • I am bahmanshams (https://keybase.io/bahmanshams) on keybase.
  • I have a public key ASCM8aBwXfFvCt4oGIid8hgtnGGkyWphP3UWWRE2toGwCwo

To claim this, I am signing this object:

@bahmanshams
bahmanshams / installScalaSbt
Created February 8, 2017 09:35
Install Scala and SBT on Ubuntu 14.04
sudo apt-get remove scala-library scala
wget www.scala-lang.org/files/archive/scala-2.12.1.deb
sudo dpkg -i scala-2.12.1.deb
sudo apt-get update
sudo apt-get install scala
wget https://dl.bintray.com/sbt/debian/sbt-0.13.13.deb
sudo dpkg -i sbt-0.13.13.deb
sudo apt-get update
sudo apt-get install sbt