python应用运行报错,部分信息如下:
Traceback (most recent call last):
File “localGPT_UI.py”, line 9, in
from streamlit_extras.add_vertical_space import add_vertical_space
ModuleNotFoundError: No module named ‘streamlit_extras.add_vertical_space’
这个错误表示 Python 找不到名为 streamlit_extras.add_vertical_space
的模块。但是我Windows电脑上已经安装了streamlit_extras
,这个问题跟之前的《Python报错ModuleNotFoundError: No module named ‘Cython’解决方法》同一个问题,解决方法:
先卸载streamlit_extras
,再运行下面命令安装wheel
pip install wheel --upgrade
再重新安装streamlit_extras
,防止报错:ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。: ‘Lib\site-packages\google\~rotobuf\internal\_api_implementation.cp310-win_amd64.pyd’,我们使用下面命令安装streamlit_extras
:
pip install streamlit-extras --user
这样streamlit_extras就成功安装了,再次运行Python应用不再报
No module named ‘streamlit_extras.add_vertical_space’