07
2026
01

python创建和激活虚拟环境

创建

python -m venv venv

激活

venv\scripts\activate


更新pip

python.exe -m pip install --upgrade pip


安装依赖

pip install -r requirements.txt


安装 streamlit

pip install streamlit


启动应用

streamlit run webui.py --server.maxUploadSize=2048


« 上一篇下一篇 »

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。