1 Star 0 Fork 13

开源项目/MoneyPrinterPlus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.bat 709 Bytes
一键复制 编辑 原始数据 按行查看 历史
wayne 提交于 2024-07-12 17:48 . 修改启动脚本
chcp 65001
@echo off
IF NOT EXIST venv (
echo Creating venv...
python.exe -m venv venv
)
call .\venv\Scripts\deactivate.bat
call .\venv\Scripts\activate.bat
REM first make sure we have setuptools available in the venv
python.exe -m pip install --require-virtualenv --no-input -q -q setuptools
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 python.exe .\setup\setup_windows.py
) ELSE (
REM echo This script was started from a command prompt.
python.exe .\setup\setup_windows.py %*
)
:: Deactivate the virtual environment
call .\venv\Scripts\deactivate.bat
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/git-open/MoneyPrinterPlus.git
git@gitee.com:git-open/MoneyPrinterPlus.git
git-open
MoneyPrinterPlus
MoneyPrinterPlus
main

搜索帮助