Difference between revisions of "Setup"

From CSE425S Wiki
Jump to navigation Jump to search
Line 56: Line 56:
 
==Language==
 
==Language==
 
===Mac OSX===
 
===Mac OSX===
via homebrew:
+
====[https://courses.cs.washington.edu/courses/cse341/17sp/ruby.pdf A Path From UW That Has Worked]====
 
+
=====Install [https://brew.sh/ homebrew]=====
  <nowiki>brew install ruby</nowiki>
+
<nowiki>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"</nowiki>
 +
=====Install ActiveTcl 8.5=====
 +
[https://www.activestate.com/products/tcl/downloads/ Install ActiveTcl 8.5 (not 8.6) from www.activestate.com]
 +
=====Install [https://rvm.io/rvm/install Ruby Version Manager]=====
 +
<nowiki>\curl -sSL https://get.rvm.io | bash</nowiki>
 +
=====Install Ruby With Tcl and Tk=====
 +
<nowiki>rvm reinstall ruby-2.2.3 --with-tcl --with-tk</nowiki>
 +
=====Set Ruby Version=====
 +
<nowiki>rvm use 2.2.3 --default</nowiki>
 +
=====Confirm Version=====
 +
  <nowiki>ruby --version</nowiki>
  
 
===Windows===
 
===Windows===

Revision as of 15:31, 18 April 2020

Coursera

JoinForFree.jpg
  • do what you need to do to join coursera (and log in, if necessary).
  • click on enroll for free
EnrollForFreeA.png
FullCourseNoCertificate.png

repeat for

ML

Language: Standard ML of New Jersey

Mac OSX

via homebrew

Windows

download msi installation

Linux

via apt-get or yum

Editor

VS Code (Preferred)

Extensions.png

SearchStandardML.png

InstallStandardML.png

OpenFolder.png

or Sublime Text (Alternate)

Racket

Language and IDE

Ruby

Language

Mac OSX

A Path From UW That Has Worked

Install homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
Install ActiveTcl 8.5
Install ActiveTcl 8.5 (not 8.6) from www.activestate.com
Install Ruby Version Manager
\curl -sSL https://get.rvm.io | bash
Install Ruby With Tcl and Tk
rvm reinstall ruby-2.2.3 --with-tcl --with-tk
Set Ruby Version
rvm use 2.2.3 --default
Confirm Version
ruby --version

Windows

Suggested:

Download From RubyInstaller ==> Ruby+Devkit 2.6.6-1 (x64)

Or alternatively: Install Ruby via RVM

Linux

Installation Instructions

OpenGL

Mac OSX

brew install glfw

Windows

Via Download

ActiveTcl (Includes Tk) Community Edition

Via Chocolatey

choco install glfw3
choco install activetcl

Linux

Ubuntu

sudo apt-get update
sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev
sudo apt-get install libglfw3-dev
sudo apt-get install libtcltk-ruby

Fedora

Gems

gem install os
gem install opengl-bindings
gem install glfw3
gem install chunky_png
gem install launchy
gem install tk

IDE

Java

Language

  • Download JDK13
  • Install JDK13

IDE

Eclipse

  • Download Up To Date Version (2019‑12) of Eclipse
  • Install Eclipse (Select Eclipse IDE for Java Developers)

or IntelliJ

Git Repo

after you have cloned your git repo from bitbucket, be sure to import the pom.xml file in the top-level java folder.