1 Star 0 Fork 0

威视百万大数据工作室/meikuang582

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ui.py 784 Bytes
一键复制 编辑 原始数据 按行查看 历史
VisionMillionDataStudio 提交于 2024-09-20 00:20 . Add files via upload
import sys
import os
import subprocess
from QtFusion.path import abs_path
def run_script(script_path):
"""
使用当前 Python 环境运行指定的脚本。
Args:
script_path (str): 要运行的脚本路径
Returns:
None
"""
# 获取当前 Python 解释器的路径
python_path = sys.executable
# 构建运行命令
command = f'"{python_path}" -m streamlit run "{script_path}"'
# 执行命令
result = subprocess.run(command, shell=True)
if result.returncode != 0:
print("脚本运行出错。")
# 实例化并运行应用
if __name__ == "__main__":
# 指定您的脚本路径
script_path = abs_path("web.py")
# 运行脚本
run_script(script_path)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/qunshansj/meikuang582.git
git@gitee.com:qunshansj/meikuang582.git
qunshansj
meikuang582
meikuang582
main

搜索帮助