1 Star 0 Fork 13

陈春江/MoneyPrinterPlus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start.bat 478 Bytes
一键复制 编辑 原始数据 按行查看 历史
wayne 提交于 2024-07-15 17:13 . 修改启动脚本
chcp 65001
@echo off
IF EXIST venv (
echo venv dir exist
call .\venv\Scripts\deactivate.bat
call .\venv\Scripts\activate.bat
) ELSE (
echo venv dir not exist
)
REM Check if the batch was started via double-click
IF /i "%%comspec%% /c %%~0 " equ "%%cmdcmdline:"=%%" (
REM echo This script was started by double clicking.
cmd /k streamlit run gui.py %*
) ELSE (
REM echo This script was started from a command prompt.
streamlit run gui.py %*
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chen-chunjiang/MoneyPrinterPlus.git
git@gitee.com:chen-chunjiang/MoneyPrinterPlus.git
chen-chunjiang
MoneyPrinterPlus
MoneyPrinterPlus
main

搜索帮助