Addon: Difference between revisions

From FreeCAD Documentation
(Removed two paragraphs. Unnecessary info.)
No edit summary
Line 22: Line 22:


<!--T:9-->
<!--T:9-->
But for macros and workbenches manual installation is also possible.
But for macros and workbenches manual installation is also possible:
* [[How_to_install_macros|How to install macros]]
* [[How_to_install_macros|How to install macros]]
* [[Installing_more_workbenches|Installing more workbenches]]
* [[Installing_more_workbenches|Installing more workbenches]]

Revision as of 08:49, 12 June 2022

Introduction

In FreeCAD and in this documentation, an addon is any component that is not part of the base installation, but that can be added to the system by certain methods.

Different types

There are three types of addons:

  • Macros: short snippet of Python code that provides a new tool or functionality in a single file ending with .FCMacro.
  • Workbenches: collections of Python files that provide related Gui Commands (tools) centered around a particular topic, for example, tools to design cabinets, or tools to work with architecture, or tools to design boats, etc. These workbenches usually define new toolbars where commands are placed as buttons.
  • Preference Packs: distributable collections of user preference. introduced in version 0.20

Installation

The recommended way to install addons is with the Addon Manager.

But for macros and workbenches manual installation is also possible: