ModuleNotFoundError: No module named 'SessionState
ModuleNotFoundError: No module named 'SessionState
我在导入 SessionState
时尝试使用流式会话状态。我收到以下错误:ModuleNotFoundError: No module named 'SessionState'
当他使用 SessionState
这是我的代码片段:
from multiprocessing import Process
import streamlit as st
import SessionState
import time
import os
import signal
st.sidebar.title("Controls")
start = st.sidebar.button("Start")
stop = st.sidebar.button("Stop")
state = SessionState.get(pid=None)
有没有人遇到过这个问题,你是如何解决的?在线没有资源
https://docs.streamlit.io/en/stable/changelog.html?highlight=SessionState#version-0-54-0
看来您必须下载 this gist 并将其放入您的项目中才能使用 SessionState
我在导入 SessionState
时尝试使用流式会话状态。我收到以下错误:ModuleNotFoundError: No module named 'SessionState'
当他使用 SessionState
这是我的代码片段:
from multiprocessing import Process
import streamlit as st
import SessionState
import time
import os
import signal
st.sidebar.title("Controls")
start = st.sidebar.button("Start")
stop = st.sidebar.button("Stop")
state = SessionState.get(pid=None)
有没有人遇到过这个问题,你是如何解决的?在线没有资源
https://docs.streamlit.io/en/stable/changelog.html?highlight=SessionState#version-0-54-0
看来您必须下载 this gist 并将其放入您的项目中才能使用 SessionState