caeser 发表于 2023-4-23 14:41:55

Streamlit 怎么在idle上运行?

import streamlit as st
import pandas as pd


add_selectbox = st.sidebar.selectbox('how',('email','home','mobile'))
add_slider = st.sidebar.slider('sees',0.0,100.0,(25.0,75.0))

在idle上运行 提示:
2023-04-23 14:38:48.055 WARNING root:
Warning: to view a Streamlit app on a browser, use Streamlit in a file and
run it with the following command:

    streamlit run

只能在cmd上运行:
C:\Users\Administrator>streamlit run c:/Users/Administrator/Desktop/34335.py

You can now view your Streamlit app in your browser.

Local URL: http://localhost:8501
Network URL: http://192.168.3.92:8501

请问下各位大佬,有什么办法能在idle上直接运行?难道只能用命令行才能运行吗?

isdkz 发表于 2023-4-23 14:41:56

Streamlit 不是设计为在 IDLE 上直接运行的,而是通过命令行运行的。在这种情况下,您需要遵循 Streamlit 的建议,即在文件中编写 Streamlit 代码并使用 `streamlit run ` 命令运行。

不过,如果您希望在 IDE 中运行 Streamlit,您可以考虑使用其他 IDE,如 Visual Studio Code 或 PyCharm。在这些 IDE 中,您可以配置运行和调试配置文件以执行 `streamlit run ` 命令。这样,您将能够在 IDE 中运行和调试 Streamlit 代码。

简而言之,您无法在 IDLE 中直接运行 Streamlit,而应该使用命令行或其他 IDE 运行。
页: [1]
查看完整版本: Streamlit 怎么在idle上运行?