| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

Common Lisp インストール

提供: MyMemoWiki
2020年2月15日 (土) 08:34時点におけるPiroto (トーク | 投稿記録)による版
ナビゲーションに移動 検索に移動

Common Lisp インストール

Lisp | Common Lisp |

yumで検索

  1. # yum search "GNU Common Lisp"
  2. Loading "installonlyn" plugin
  3. Setting up repositories
  4. Reading repository metadata in from local files
  5.  
  6.  
  7.  
  8. gcl.i386 2.6.7-15.fc6 extras
  9. Matched from:
  10. GNU Common Lisp
  11.  
  12.  
  13.  
  14. maxima-runtime-gcl.i386 5.13.0-4.fc6 extras
  15. Matched from:
  16. Maxima compiled with Gnu Common Lisp (gcl)

yumでインストール

  1. # yum install gcl.i386
  2. Loading "installonlyn" plugin
  3. Setting up Install Process
  4. Setting up repositories
  5. Reading repository metadata in from local files
  6. :
  7. Installed: gcl.i386 0:2.6.7-15.fc6
  8. Dependency Installed: gmp.i386 0:4.1.4-10.fc6 tcl.i386 0:8.4.13-3.fc6 tk.i386 0:8.4.13-4.fc6
  9. Complete!

実行してみる

  1. # gcl
  2. GCL (GNU Common Lisp) 2.6.7 ANSI Aug 14 2007 17:34:18
  3. Source License: LGPL(gcl,gmp), GPL(unexec,bfd)
  4. Binary License: GPL due to GPL'ed components: (READLINE BFD UNEXEC)
  5. Modifications of this banner must retain notice of a compatible license
  6. Dedicated to the memory of W. Schelter
  7.  
  8. Use (help) to get some basic information on how to use GCL.
  9.  
  10. >(+ 1 2 6)
  11.  
  12. 9