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
创建
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