|
| 1 | +This guide covers the complete removal of klipper-toolchanger from your printer. Follow the steps below to delete the repository and clean up any leftover symlinks in Klipper. |
| 2 | + |
| 3 | +## Remove Klipper-Toolchanger |
| 4 | +Connect to the printer via SSH and enter the following commands: |
| 5 | + |
| 6 | +``` bash { .copy } |
| 7 | +cd ~/ |
| 8 | +ls |
| 9 | +``` |
| 10 | + |
| 11 | +This will list the installed extension folders. Identify the correct toolchanger folder to remove. In this example we uninstall `klipper-toolchanger`: |
| 12 | + |
| 13 | +``` bash { .copy } |
| 14 | +sudo rm -rf ~/klipper-toolchanger/ |
| 15 | +``` |
| 16 | + |
| 17 | +!!! warning "Double-check the folder name" |
| 18 | + `rm -rf` will permanently delete the folder without confirmation. |
| 19 | + |
| 20 | +## Clean Up Broken Symlinks |
| 21 | +Delete the broken symlinks that still exist in `~/klipper/klippy/extras/`: |
| 22 | + |
| 23 | +``` bash { .copy } |
| 24 | +cd ~/klipper/klippy/extras/ |
| 25 | +ls |
| 26 | +``` |
| 27 | +<img src="/assets/uninstall_broken-symlinks.png" alt="broken symlinks example" /> |
| 28 | + |
| 29 | +The files shown in red are broken links and can be safely removed: |
| 30 | + |
| 31 | +``` bash { .copy } |
| 32 | +sudo rm -f ~/klipper/klippy/extras/bed_thermal_adjust.py \ |
| 33 | + ~/klipper/klippy/extras/multi_fan.py \ |
| 34 | + ~/klipper/klippy/extras/manual_rail.py \ |
| 35 | + ~/klipper/klippy/extras/rounded_path.py \ |
| 36 | + ~/klipper/klippy/extras/toolchanger.py \ |
| 37 | + ~/klipper/klippy/extras/tool_probe_endstop.py \ |
| 38 | + ~/klipper/klippy/extras/tool_probe.py \ |
| 39 | + ~/klipper/klippy/extras/tool.py \ |
| 40 | + ~/klipper/klippy/extras/tools_calibrate.py |
| 41 | +``` |
| 42 | + |
| 43 | +## Printer Config |
| 44 | +Remove the following include line from your `printer.cfg`: |
| 45 | + |
| 46 | +``` cfg |
| 47 | +[include toolchanger/readonly-configs/toolchanger-include.cfg] |
| 48 | +``` |
| 49 | + |
| 50 | +## Moonraker Config |
| 51 | +If you added the update manager entry during installation, remove the following block from your `moonraker.conf`: |
| 52 | + |
| 53 | +``` cfg |
| 54 | +[update_manager klipper-toolchanger-easy] |
| 55 | +type: git_repo |
| 56 | +path: ~/klipper-toolchanger-easy |
| 57 | +origin: https://github.com/jwellman80/klipper-toolchanger-easy.git |
| 58 | +managed_services: klipper |
| 59 | +primary_branch: main |
| 60 | +``` |
| 61 | + |
| 62 | +klipper-toolchanger has been removed cleanly from your system. |
0 commit comments