谁还没个明天 2012-09-07 17:01 采纳率: 66.7%
浏览 259

如何在 Mac 上安装 MIT Scheme?

I want to install MIT Scheme on my Mac, I have downloaded the MacOS X binary(x86-64).

However, I could not make it work using Mac Terminal.

I have tried to follow these articles:

Installing MIT/GNU Scheme on Mac OS X Leopard

Installing MIT Scheme on Mac OS X

but it seems out of date and does not work.

So, I'm looking for a simple method which allows me to write Scheme code using Mac Terminal.

I have struggled for hours to try to install it.

转载于:https://stackoverflow.com/questions/12322434/how-to-install-mit-scheme-on-mac

  • 写回答

9条回答

  • YaoRaoLov 2012-09-07 17:05
    关注

    Homebrew makes it easy for you. On Terminal, type:

    ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go) ; brew install mit-scheme

    Done!

    Edit

    The install script has been moved:

    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" ; brew install mit-scheme
    
    评论

报告相同问题?