Files
create/docs/src/guide/installation.md
forbes 87a0af0b0f phase 1: copy Kindred-only files onto upstream/main (FreeCAD 1.2.0-dev)
Wholesale copy of all Kindred Create additions that don't conflict with
upstream FreeCAD code:

- kindred-icons/ (1444 Catppuccin Mocha SVG icon overrides)
- src/Mod/Create/ (Kindred Create workbench)
- src/Gui/ Kindred source files (FileOrigin, OriginManager,
  OriginSelectorWidget, CommandOrigin, BreadcrumbToolBar, EditingContext)
- src/Gui/Icons/ (Kindred branding and silo icons)
- src/Gui/PreferencePacks/KindredCreate/
- src/Gui/Stylesheets/ (KindredCreate.qss, images_dark-light/)
- package/ (rattler-build recipe)
- docs/ (architecture, guides, specifications)
- .gitea/ (CI workflows, issue templates)
- mods/silo, mods/ztools submodules
- .gitmodules (Kindred submodule URLs)
- resources/ (kindred-create.desktop, kindred-create.xml)
- banner-logo-light.png, CONTRIBUTING.md
2026-02-13 14:03:58 -06:00

50 lines
1.1 KiB
Markdown

# Installation
## Prebuilt packages
Download the latest release from the [releases page](https://git.kindred-systems.com/kindred/create/releases).
### Debian / Ubuntu
```bash
sudo apt install ./kindred-create_*.deb
```
### AppImage (any Linux)
```bash
chmod +x KindredCreate-*.AppImage
./KindredCreate-*.AppImage
```
The AppImage is a self-contained bundle using squashfs with zstd compression. No installation required.
### macOS
> macOS builds are planned but not yet available in CI. Build from source for now.
### Windows
> Windows builds are planned but not yet available in CI. Build from source for now.
## Verifying your installation
Launch Kindred Create and check the console output (View > Report View) for:
```
Create: Loaded ztools Init.py
Create: Loaded silo Init.py
Create module initialized
```
This confirms the bootstrap module loaded both workbenches. If Silo is not configured, you will see a settings prompt on first launch.
## Uninstalling
**Debian/Ubuntu:**
```bash
sudo apt remove kindred-create
```
**AppImage:** Delete the `.AppImage` file. No system files are modified.