こすたろーんエンジニアの試行錯誤部屋

作成物の備忘録を書いていきますー

【streamlit】windowsマシン上でpip install streamlit時、subprocess-exited-with-error発生時の対応方法

この記事はwindowsマシンにstreamlitをインストールする際に発生したエラー「subprocess-exited-with-error」を
回避する方法の備忘録です

目次

スポンサーリンク

この記事でわかること

windowsマシン上でpip install streamlit時、subprocess-exited-with-error発生時の対応方法

1.実行環境

Jetson Xavier NX
windows
Python 3.7.0

2.対応方法

python -m pip install -U pip  
pip install -U wheel  
pip install -U setuptools  

上記実行後に再度インストールを実行します

pip install streamlit

スポンサーリンク

streamlit関連記事

technoxs-stacker.hatenablog.com

参考

discuss.streamlit.io