安裝 mit-scheme
以下是如何安裝 MIT / GNU Scheme 的示例 :
Debian / Ubuntu 安裝:
sudo apt-get install mit-scheme
手動安裝:
直接從 GNU Project 下載 Unix 二進位制檔案,然後按照官方網頁上的說明操作 :
# Unpack the tar file
tar xzf mit-scheme.tar.gz
# move into the directory
cd mit-scheme/src
# configure the software
./configure
預設情況下,軟體將安裝在子目錄 bin 和 lib 中的/usr/local
中。如果你希望將其安裝在其他位置,例如/opt/mit-scheme
,請將 --prefix
選項傳遞給 configure 指令碼,如 ./configure --prefix=/opt/mit-scheme
。
configure 指令碼接受此類指令碼的所有常規引數,並且還接受一些特定於 MIT / GNU Scheme 的引數。要檢視所有可能的引數及其含義,請執行命令 ./configure --help
。
# build
make compile-microcode
# compile
make install # may require super-user permissions (Depending on configuration)
Windows 7 :
MIT / GNU Scheme 作為自安裝可執行檔案分發。安裝軟體很簡單。只需執行下載的檔案並回答安裝程式的問題。安裝程式將允許你選擇要安裝 MIT / GNU Scheme 的目錄,以及要放置快捷方式的資料夾的名稱。