TL;DR
Google Colaboratory(Colab)のPythonのバージョンは長らく3.6でしたが、2021年2月24日に3.7にアップグレードされました1。 これによって、Python 3.6系にしか対応していない2電波天文学のデータ解析ソフトウェアCASAがColab上で動かなくなってしまいました。 この記事では、3.7系対応のプレリリース版CASA6.2をColabにインストールし、公式のノートブックが動くことを確認してみました3。
How to install
まず、リリース版のインストール方法はCASA docsに記載されている以下の方法です。
apt-get install libgfortran3
pip install --index-url https://casa-pip.nrao.edu/repository/pypi-casa-release/simple casatools
pip install --index-url https://casa-pip.nrao.edu/repository/pypi-casa-release/simple casatasks
これをColabで実行すると、Python 3.7対応のcasatoolsが存在しないのでエラーが出てインストールできません。
Looking in indexes: https://casa-pip.nrao.edu/repository/pypi-casa-release/simple
ERROR: Could not find a version that satisfies the requirement casatools (from versions: none)
ERROR: No matching distribution found for casatools
そこで、https://casa-pip.nrao.eduを検索してPython 3.7対応のプレリリース版を探します。 記事作成時点では、6.2.0.100などが良さそうです4。 というわけで、プレリリース版のインストール方法ではこれらを手動でダウンロードします。
apt-get install libgfortran3
wget https://casa-pip.nrao.edu/repository/casa-test-wheel/packages/casatools/6.2.0.100/casatools-6.2.0.100-cp37-cp37m-manylinux2010_x86_64.whl
wget https://casa-pip.nrao.edu/repository/casa-test-wheel/packages/casatasks/6.2.0.100/casatasks-6.2.0.100-py3-none-any.whl
wget https://casa-pip.nrao.edu/repository/casa-aux-wheel/packages/casadata/2021.4.5/casadata-2021.4.5-py3-none-any.whl
pip install casatools-6.2.0.100-cp37-cp37m-manylinux2010_x86_64.whl
pip install casatasks-6.2.0.100-py3-none-any.whl
pip install casadata-2021.4.5-py3-none-any.whl
Operation check
以上のインストール方法を書いた公式のノートブックのコピーを作成しました。 実行したところ、少なくともノートブックの内容(listobs, tclean, exportfits)は動作することが確認できました。
References
- CASA: Common Astronomy Software Applications
- Obtaining and Installing — CASA Documentation
- CASA6_demo.ipynb (CASA official)
- CASA6.2_demo.ipynb (Made by the author)
-
https://github.com/googlecolab/colabtools/issues/1422#issuecomment-784545501 ↩︎
-
2021年4月時点の最新版CASA6.1の話です ↩︎
-
ノートブックの内容が動くだけで、全ての動作を保証するものではありません ↩︎
-
マイナー以下のバージョンの違いは筆者は良く分かりませんでした… ↩︎