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 1 year has passed since last update.

CASAのpipelineが読み込めない時

Posted at

CASA 6.1.1.15でパイプラインキャリブレーションをかけるとき、

ERROR: Pipeline not available. Make sure you start CASA with option --pipeline to activate the pipeline.

というエラーが出て止まった。もう少し詳しく見ると、どうやら

import pipeline

 libssl.so.10: cannot open shared object file: No such file or directory

というようなエラーで止まっているらしい。libssl.so.10がなんなのかはよく知らない(OpenSSL関係。どこで使ってるんだろう)が、だいじなものらしい。

このインストール方法はググるとヒットするが、あまりうまくいかなかった。が、たまたま見つけたこの中国語のページの内容で一発だった。

やってることはopensslの公式サイトからソースを落として自分でmakeしてインストールしてるだけだが、他に見当たらなかったのでとてもありがたい。

一応ここにも転記する:

wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1e.tar.gz
tar -zxvf openssl-1.0.1e.tar.gz
cd openssl-1.0.1e
./config shared zlib-dynamic
make

の後に

cp libssl.so.1.0.0 libcrypto.so.1.0.0 /lib/x86_64-linux-gnu
cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10
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?