28 lines
657 B
Markdown
28 lines
657 B
Markdown
# CascadingDev Installer
|
|
|
|
## Requirements
|
|
- Python 3.10+ and git
|
|
- (Optional) PySide6 for GUI (`pip install PySide6`)
|
|
|
|
## Quick start
|
|
```bash
|
|
|
|
python setup_cascadingdev.py --target /path/to/new-project
|
|
```
|
|
|
|
### Skip GUI
|
|
```bash
|
|
python setup_cascadingdev.py --target /path/to/new-project --no-ramble
|
|
```
|
|
|
|
> After installation, open `USER_GUIDE.md` in your new project for daily usage.
|
|
|
|
## Rebuild & Run (for maintainers)
|
|
Rebuild the bundle every time you change assets/ or the installer:
|
|
```bash
|
|
python tools/build_installer.py
|
|
```
|
|
Then run only the bundled copy:
|
|
```bash
|
|
python install/cascadingdev-*/setup_cascadingdev.py --target /path/to/new-project
|
|
``` |