Unfortunately, the Delphi IDE does not support the automatic installation of components at all. IMO, this is a very big problem, since component architecture is so important in Delphi.
You can create your package from the command line (using MSBuild or DCC), but you cannot install it in the IDE. To install a package, you must write your own installer that will create your package, copy the compiled files and update the Windows registry. Please note that there is no official documentation on how to write such an installer, but you can take the Jedi Installer Code (JVCL) as an example.
There are also third-party tools that automate the installation of components, such as the ' lazy constructor ', which may be of interest to you.
kludg source share