我已经通过“Pip install Streamlit”安装了streamlit
安装过程中一切顺利。但是当我尝试使用 Streamlit hello 时,我收到一条“访问被拒绝”消息。
我尝试过的:
没有任何作用。知道为什么会发生这种情况吗?
它对我来说很有用,将其安装在我的虚拟环境中:
conda install -c conda-forge streamlit
而不是这样做:
pip install streamlit
还没有尝试接受的答案,但这对我有用:
假设:
path/to/repo
path/to/repo/.conda
pip install streamlit
我已经在 PowerShell 中执行了这个并且它起作用了:
.\.conda\Scripts\streamlit.cmd run .\main.py
旁注1:当使用
streamlit.exe
运行上述命令时,它不起作用;看来你必须运行 streamlit.cmd
来代替。
旁注 2:我尚未在
.venv
环境或全局范围内测试此解决方案,但我认为它也有效。