Installing dm-types on Windows. (Win7 x64)

前端 未结 3 612
一生所求
一生所求 2021-01-06 02:45

I am trying to install dm-types for DataMapper on my machine with

gem install dm-types 

I\'ve installed Ruby from RubyInstaller (1.9.3) a

3条回答
  •  独厮守ぢ
    2021-01-06 03:26

    It looks the the spaces in the path for ruby are screwing up the makefile. Maybe try creating a symlink on Windows temporarily, like:

    mklink /d c:\ruby "C:\Program Files (x86)\Ruby\Ruby193"
    

    and then try installing. You can delete the symlink after installing.

    C:\ruby\bin\gem install dm-types
    

提交回复
热议问题