BLOG main image
분류 전체보기 (313)
교육 (13)
NEIS (6)
Edufine (0)
Programmer (5)
Android Programming (1)
Internet W3 (18)
JAVA Programming (9)
JSP/Servlet (1)
Framework (7)
Spring For Beginner (4)
eGovFrame (10)
MEAN Stack (2)
NodeJS (5)
SublimeText (30)
SublimeText_Tips (18)
Eclipse (16)
JavaScript (8)
jQuery (12)
jQuery_tips (1)
Ajax (3)
DWR(Direct Web Remote) (4)
JSON(JS Object Notation) (4)
Oracle (2)
MySQL (28)
OS (16)
Download (3)
Life (10)
Favorit Site (1)
Books (2)
Healthy (1)
Stocks (1)
HTML5/CSS (1)
Python (4)
Security (7)
CISSP (0)
Ruby On Rails (5)
일기장 (0)
영어 교과서(중2) (3)
알고리즘 (0)
Go Lang (3)
VB 2010 (12)
C# (1)
정보보안기사(네트워크보안) (0)
업무 활용 엑셀 (11)
틈틈이 활용팁 (14)
하루 하루 살아가며 ……. (2)
기술 (1)
파이썬 & 데이터분석 (1)
Visitors up to today!
Today hit, Yesterday hit
daisy rss
tistory 티스토리 가입하기!
2016. 1. 19. 13:19

윈도우즈에 Ruby를 설치하는 것은, 사용자 PC 환경에 따라 쉬울 수도 있고 어려워질 수도 있다. 여러분의 PC 환경이 가급적 전자이길 바란다.

일단, Windows용 Ruby 설치파일을 Ruby Installer에서 다운로드 받아 설치한다.

Requirements

  • Ruby for windows 1.9.3
  • DevKit tdm32 4.5.2

편의를 위해 ruby를 E:\lang\ruby193에 설치하고, devkit을 E:\lang\devkit에 설치했다고 가정하겠다.

ruby와 devkit의 설치가 끝났다면, 명령 프롬프트를 열어서 devkit이 설치된 디렉토리로 이동한 뒤 ruby dk.rb init과 ruby dk.rb.install 순서대로 입력하여 설치된 ruby가 devkit을 바라보도록 설정한다.

E:\lang\devkit>ruby dk.rb init
[INFO] found RubyInstaller v1.9.3 at E:/lang/ruby193

Initialization complete! Please review and modify the auto-generated
'config.yml' file to ensure it contains the root directories to all
of the installed Rubies you want enhanced by the DevKit.

E:\lang\devkit>ruby dk.rb install
[INFO] Updating convenience notice gem override for 'E:/lang/ruby193'
[INFO] Installing 'E:/lang/ruby193/lib/ruby/site_ruby/devkit.rb'

그 다음 RubyGems를 업데이트 해 준다.

gem update

여기까지 아무 에러메시지 없이 완료되었다면 설치는 끝났다! 하지만, 아래와 같은 오류메시지를 만났다면 추가작업이 필요하다.

E:\>gem update
Updating installed gems
Updating bigdecimal
Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
E:\lang\devkit\bin\rm.exe: *** Couldn't reserve space for cygwin's heap (0x60E90000 <0x2660000>) in child, Win32 error 0
E:\lang\devkit\bin\mkdir.exe: *** Couldn't reserve space for cygwin's heap (0x60E90000 <0x2690000>) in child, Win32 error 0
E:\lang\devkit\bin\install.exe: *** Couldn't reserve space for cygwin's heap (0x60E90000 <0x26F0000>) in child, Win32 error 0

이 오류는 devkit의 기반인 MinGW의 msys-1.0.dll 파일의 메모리 관련 오류인데 MinGW의 고질적인 문제라고 한다. DLL파일의 Rebase를 통해 해결할 수 있는데 이를 위해서는 Windows용 Git의 설치가 필요하다. Git 자체가 필요하다기 보다는 같이 설치되는 Utility 중 하나를 활용하기 위함이다.

Git 이 설치되어 있지 않다면, 설치한다. 

https://git-scm.com/

https://git-scm.com/downloads

Git이 설치된 디렉토리의 bin 디렉토리를 보면 rebase.exe 라는 파일이 존재하는데, 이 파일로 devkit의 msys-1.0.dll 파일을 Rebase 할 수 있다. 편의상 Git이 E:\git에 설치되어 있다고 가정하겠다.

E:\git\bin\rebase.exe -b 0x64000000 E:\ruby22\devkit\bin\msys-1.0.dll

아무 내용없이 프롬프트가 떨어졌다면 성공적으로 DLL Rebase가 된 것이다. 이 후, 다시 gem update를 실행하여 설치를 마친다.

참고자료

출처 : http://blog.tolinezip.com/


반응형