Difference between revisions of "Ruby Setup"

From CSE425S Wiki
Jump to navigation Jump to search
 
(6 intermediate revisions by the same user not shown)
Line 75: Line 75:
  
 
====OpenGL Runtime====
 
====OpenGL Runtime====
 +
The Mac seems to have caused problems with installing OpenGL.  Wait for an update on this coming soon.
 +
 +
<!-- 
 
  <nowiki>brew install glfw</nowiki>
 
  <nowiki>brew install glfw</nowiki>
 +
-->
  
 
====OpenGL Gem====
 
====OpenGL Gem====
Line 139: Line 143:
  
 
=====Fedora=====
 
=====Fedora=====
<nowiki>sudo dnf module install ruby:2.7</nowiki>
+
[https://developer.fedoraproject.org/tech/languages/ruby/ruby-installation.html install ruby]
  
 
=====Ubuntu=====
 
=====Ubuntu=====
Line 208: Line 212:
  
 
==Check Installation==
 
==Check Installation==
 +
<!--
 +
'''NOTE: CSE 425s no longer uses tk so there is no longer a tk_check.rb to run.'''
  
 
<youtube>7KN7NJ7VvNE</youtube>
 
<youtube>7KN7NJ7VvNE</youtube>
 
<!--
 
 
===Tk===
 
===Tk===
{{RubyToRun|tk_check|installation_check}}
+
{{RubyToRun|tk_check|installation_check|main}}
  
 
[[File:Tk installation check.png]]
 
[[File:Tk installation check.png]]
Line 219: Line 223:
  
 
===OpenGL===
 
===OpenGL===
{{RubyToRun|opengl_check|installation_check}}
+
 
 +
NOTE: Mac users will get an update shortly which should make this process work smoother.  No need to test right now.
 +
 
 +
{{RubyToRun|opengl_check|installation_check|main}}
  
 
[[File:Opengl  installation check.png]]
 
[[File:Opengl  installation check.png]]
  
 
===OpenGL Texture===
 
===OpenGL Texture===
{{RubyToRun|opengl_texture_check|installation_check}}
+
{{RubyToRun|opengl_texture_check|installation_check|main}}
  
 
[[File:Opengl texture installation check.png]]
 
[[File:Opengl texture installation check.png]]

Latest revision as of 13:11, 27 August 2024

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

1) restart your terminal

or

2) source the appropriate configuration file based on your shell (which is often dependent on the OSX version)

source .zshrc

or

source .bash_profile

Then run

ruby --version

which should report version 2.7.2 as of Fall 2020.


OS Gem

sudo gem install os

PNG Gem

sudo gem install chunky_png

OpenGL Runtime

The Mac seems to have caused problems with installing OpenGL. Wait for an update on this coming soon.


OpenGL Gem

sudo gem install opengl-bindings

Opener Gem

sudo gem install opener

Windows

Ruby

Download and Install Ruby+Devkit 3.1.2-1 (x64)


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

Ruby Language

Fedora

install ruby

Ubuntu
sudo apt-get install ruby-full

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

OpenGL

NOTE: Mac users will get an update shortly which should make this process work smoother. No need to test right now.

file to run: src/main/ruby/installation_check/opengl_check.rb Ruby logo.svg

Opengl installation check.png

OpenGL Texture

file to run: src/main/ruby/installation_check/opengl_texture_check.rb Ruby logo.svg

Opengl texture installation check.png