0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AmazonLinux2にroswellをインストール

Last updated at Posted at 2021-11-18

#はじめに
AmazonLinux2にroswellをインストールする手順が欲しかったので書きます。
sbclを入れてreplが起動するところまでのシンプルな手順です。
#環境
EC2
AmazonLinux2
処理系 sbcl
#インストール手順

必要なライブラリをインストール

gitやgccもなければ入れておきます。

sudo yum install -y automake libcurl-devel zlib-devel git gcc

DockerのAmazonLinux2の場合

EC2じゃなくて、Docker上にAmazonLinux2のイメージを使用してインストールする場合は、さらにmakeとbzip2とtarのインストールも必要となります。
ros seupで次のようなエラーがでて、ちょっとハマりました。

Building sbcl-bin/2.1.10...cat: find-gnumake.sh: No such file or directory

また、quicklispを使おうとすると、openssl11も必要でした。

コンパイル

gitからソースを落としてきてコンパイルします。

git clone -b release https://github.com/roswell/roswell.git
cd roswell
sh bootstrap
./configure
make
sudo make install

roswellのセットアップと起動

ros setup

これで起動できました。

[ec2-user@ip-172-31-12-34 roswell]$ ros run
* 

#参考URL
https://github.com/roswell/roswell/wiki/Installation
https://takeokunn.xyz/blog/post/amazonlinux-caveman2-hosting

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?