@qito/wtdl
v1.4.5
Published
Bootstrap installer and launcher for WTDL Studio
Maintainers
Readme
wtdl
Lightweight npm bootstrap package for WTDL Studio.
What it does
This package does not bundle the full Python application into npm.
Instead, the wtdl command will:
- Clone or update
qitong-demo/wtdl-studiointo your home directory - Detect a local Python installation
- Create a local
.venvon first run - Install
requirements.txt - Install
torchandtorchvision - Launch the existing
wtdl.pyentrypoint with your arguments
Requirements
- Node.js 18+
- Git
- Python 3
Usage
npm i -g @qito/wtdl
wtdl
wtdl version
wtdl doctorOptional workspace override
Set WTDL_HOME if you want the repo installed somewhere else:
WTDL_HOME=/custom/path wtdlOn Windows PowerShell:
$env:WTDL_HOME="D:\\apps\\wtdl-studio"
wtdlSkip auto-update
If you already have a local checkout and do not want the launcher to run git pull first:
WTDL_SKIP_UPDATE=1 wtdl versionOn Windows PowerShell:
$env:WTDL_SKIP_UPDATE="1"
wtdl versionPyTorch mirror override
If you need a custom PyTorch index URL, set WTDL_TORCH_INDEX_URL before the first run:
$env:WTDL_TORCH_INDEX_URL="https://download.pytorch.org/whl/cpu"
wtdl version