ラズパイにstreamlitをインストールする際にはまったので、対処方法を紹介します。
動作環境は下記になります。
当サイトではプログラミングやブログに関する記事の情報投稿をしております。
他の記事もあわせて読んでいただけると嬉しいのでよろしくお願いします!
症状の確認:streamlitのインストールが失敗する
venv
で仮想環境を作成し、streamlitのインストールを行います。
公式ドキュメントにもあるようにpipコマンド
でインストールを試みましたが、エラーが発生してインストール失敗。
$ pip3 install streamlit
Traceback (most recent call last):
File "/home/raspi/.local/bin/cmake", line 6, in <module>
from cmake import cmake
ModuleNotFoundError: No module named 'cmake'
error: command '/home/raspi/.local/bin/cmake' failed with exit code 1
----------------------------------------
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-xmtdslsl/pyarrow/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-ozto87d6/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /tmp/pip-install-xmtdslsl/pyarrow/
対処方法
こちらで議論されているように最新ではなくstreamlit==0.62.0
ならインストールができるようです。
$ pip3 install streamlit==0.62.0
Installing collected packages: streamlit
Successfully installed streamlit-0.62.0
無事にインストールすることができたので動作確認してみます。
$ streamlit hello
Welcome to Streamlit. Check out our demo in your browser.
Network URL: http://xxx.xxx.xx.xx:xxxx
External URL: http://xxx.xxx.xx.xx:xxx
Ready to create your own Python apps super quickly?
Just head over to https://docs.streamlit.io
May you create awesome apps!
Network URLのリンクにアクセスし、下記のようなブラウザ画面になればStreamlitが起動しております。
コメント