Difference between revisions of "Ruby Setup"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
Note: depending on how the permissions are set up on your machine you may need to prefix a command with <code>sudo</code> or perhaps you may have to omit <code>sudo</code>. | Note: depending on how the permissions are set up on your machine you may need to prefix a command with <code>sudo</code> or perhaps you may have to omit <code>sudo</code>. | ||
+ | ====[https://brew.sh/ Homebrew]==== | ||
+ | <nowiki>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" </nowiki> | ||
+ | <!-- | ||
====Standard Ruby==== | ====Standard Ruby==== | ||
Nicely, Ruby ships with the Mac standard installation. While it may not be the most up to date version, it may be the best option to simply use your default version: /usr/bin/ruby. | Nicely, Ruby ships with the Mac standard installation. While it may not be the most up to date version, it may be the best option to simply use your default version: /usr/bin/ruby. | ||
+ | --> | ||
+ | ====Install Ruby==== | ||
+ | <nowiki>brew install ruby</nowiki> | ||
+ | |||
+ | ====Add Ruby To Path==== | ||
+ | if Mac OSX 10.15 Catalina or greater | ||
+ | |||
+ | ~/.zshrc | ||
+ | |||
+ | else | ||
+ | |||
+ | ~/.bash_profile | ||
+ | |||
+ | Add this line: | ||
+ | |||
+ | <nowiki>export PATH="/usr/local/opt/ruby/bin:$PATH"</nowiki> | ||
+ | |||
+ | ====check ruby==== | ||
+ | You can either restart your terminal or type | ||
+ | |||
+ | <nowiki>source .zshrc</nowiki> | ||
+ | |||
+ | or | ||
+ | |||
+ | <nowiki>source .bash_profile</nowiki> | ||
+ | |||
+ | and run | ||
+ | |||
+ | <nowiki>ruby --version</nowiki> | ||
+ | |||
+ | which should report version <code>2.7.2</code> as of Fall 2020. | ||
====Active Tcl 8.5==== | ====Active Tcl 8.5==== | ||
Line 17: | Line 51: | ||
====PNG Gem==== | ====PNG Gem==== | ||
<nowiki>sudo gem install chunky_png</nowiki> | <nowiki>sudo gem install chunky_png</nowiki> | ||
− | |||
− | |||
− | |||
====OpenGL Runtime==== | ====OpenGL Runtime==== |
Revision as of 05:19, 18 November 2020
Language
Mac OSX
Note: depending on how the permissions are set up on your machine you may need to prefix a command with sudo
or perhaps you may have to omit sudo
.
Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
Install Ruby
brew install ruby
Add Ruby To Path
if Mac OSX 10.15 Catalina or greater
~/.zshrc
else
~/.bash_profile
Add this line:
export PATH="/usr/local/opt/ruby/bin:$PATH"
check ruby
You can either restart your terminal or type
source .zshrc
or
source .bash_profile
and run
ruby --version
which should report version 2.7.2
as of Fall 2020.
Active Tcl 8.5
Install Active Tcl 8.5
Tk Gem
sudo gem install tk
OS Gem
sudo gem install os
PNG Gem
sudo gem install chunky_png
OpenGL Runtime
brew install glfw
OpenGL Gem
sudo gem install opengl-bindings
Opener Gem
sudo gem install opener
Windows
Ruby Installer
Tk Gem
gem install tk
OS Gem
gem install os
PNG Gem
gem install chunky_png
OpenGL Gem
gem install opengl-bindings
Zip Gem
gem install zip
OpenGL Runtime
NOTE: the first time you run one of the course's Ruby script which uses OpenGL, it will automatically download and extract FreeGLUT and GLFW3 to your ~/Downloads/CSE425s folder and use the files within.
Opener Gem
gem install opener
Linux
ActiveTcl
Note: you will need to create an account to download ActiveTcl 8.5.
Note: ActiveTcl 8.6 has be known to cause problems.
Download and Install ActiveTcl 8.5
Ruby Language With Tk
A path that has worked on Ubuntu 20.04:
sudo apt-get install ruby-full
sudo gem install tk --with-ActiveTcl
OS Gem
sudo gem install os
PNG Gem
sudo gem install chunky_png
OpenGL Runtime
sudo apt-get update
sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev
sudo apt-get install libglfw3-dev
OpenGL Gem
sudo gem install opengl-bindings
Opener Gem
sudo gem install opener
IDE
Check Installation
Tk
file to run: | src//ruby/installation_check/tk_check.rb |
OpenGL
file to run: | src//ruby/installation_check/opengl_check.rb |
OpenGL Texture
file to run: | src//ruby/installation_check/opengl_texture_check.rb |