Skip to content

Instantly share code, notes, and snippets.

@josiah14
Last active August 29, 2015 14:18
Show Gist options
  • Save josiah14/485c61943d7615f6d6c7 to your computer and use it in GitHub Desktop.
Save josiah14/485c61943d7615f6d6c7 to your computer and use it in GitHub Desktop.
Install Typesafe Activator, Scala, SBT, etc.
  1. Download Typesafe activator from the main website (URL not provided because it may change and is easy to find on Google).

  2. mkdir ~/lib && mkdir ~/lib/activator

  3. cd ~/Downloads

    unzip typesafe-activator-1.3.2.zip -d ~/lib/activator

    mv ~/lib/activator/activator-1.3.2 ~/lib/activator/1.3.2

  4. echo 'export PATH=$PATH:~/lib/bin'

    mkdir ~/lib/bin

    ln -s ~/lib/activator/1.3.2 ~/lib/bin/activator

    chmod 777 ~/lib/bin/activator

    source ~/.zshrc

  5. echo 'export CLASSPATH=$CLASSPATH:"~/lib/activator/1.3.2/*"' >> ~/.zshrc

  6. cd ~/Development && activator new <project name>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment