Problems installing Thin on windows 7 x86

后端 未结 4 1423
慢半拍i
慢半拍i 2021-01-16 12:29

I\'m having problems getting thin working on my Windows 7 machine (I\'ve already installed eventmachine v0.8.1):

>gem install thin --i

4条回答
  •  爱一瞬间的悲伤
    2021-01-16 12:52

    There actually are pre-built binaries for particular versions of Thin but you need to know which ones. To get the latest pre-built win32 version do the following:

    1. Go to the RubyGems Thin page
    2. Look under the "Versions" section for a version that has "x86-mswin32" to the right of it. (As of today versions 1.2.11, 1.2.10, etc all have win32 binaries)
    3. Run the following following "gem install" command with the version of Thin included with the "-v" flag:

    gem install thin -v 1.2.11

    Here are the results from my installation:

    c:\>gem install thin -v 1.2.11
    Successfully installed thin-1.2.11-x86-mswin32
    1 gem installed
    Installing ri documentation for thin-1.2.11-x86-mswin32... 
    Updating ri class cache with 3611 classes... 
    Installing RDoc documentation for thin-1.2.11-x86-mswin32...
    

提交回复
热议问题