mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2026-02-21 16:37:21 +08:00
14 lines
408 B
Batchfile
14 lines
408 B
Batchfile
@echo off
|
|
set CURRENT_DIR=%CD%
|
|
echo ***** Current directory: %CURRENT_DIR% *****
|
|
set PYTHONPATH=%CURRENT_DIR%
|
|
|
|
rem Activate Python virtual environment if exists
|
|
if exist "venv\Scripts\activate.bat" (
|
|
call venv\Scripts\activate.bat
|
|
)
|
|
|
|
rem Optional Hugging Face mirror setting
|
|
rem set HF_ENDOINT=https://hf-mirror.com
|
|
|
|
streamlit run .\webui\Main.py --browser.gatherUsageStats=False --server.enableCORS=True |