Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试pip install streamlit它失败并显示错误消息:
pip install streamlit
错误:“无法为使用 PEP 517 且无法直接安装的 pyarrow 构建轮子”
我尝试pip install pyarrow直接安装但仍然给出相同的错误消息
pip install pyarrow
就我而言,问题与 Python 版本有关。更具体地说,我在错误日志中注意到: RuntimeError: Not supported on 32-bit Windows
所以我安装了 Python 3.8.6(x64 版本)而不是 x32
问题解决了
我也遇到了同样的问题,我注意到 pyarrow 是 streamlit 版本 0.63.0 中的要求。所以你可以使用pip install streamlit==0.62.0,它会工作得很好
pip install streamlit==0.62.0
Streamlit 版本 0.62.1 和 python 版本 3.8.5 工作正常。