= Running a component = When we [[TutorialCreatingNewComponent|created a component]] and [[TutorialAddingComponentToXML|created and XML file]] for it, we are now going to run the program which will load this component. **Note:** Make sure that you have ''installed'' the component library to the ```bin``` directory of Pacpus. **Note:** We will now suppose that we are in the ```bin``` directory of Pacpus installation. == Using ```DbitePlayer``` == **Warning:** This is for testing purposes only, !DbitePlayer and your component will run in the same process. Windows release: {{{#!sh DbitePlayer.exe MyComponent_Dbite.xml }}} Linux debug: {{{#!sh ./DbitePlayer MyComponent_Dbite_d.xml }}} == Using ```Sensor``` == **Warning:** This is for testing purposes only, Sensor and your component will run in the same process. Windows debug: {{{#!sh Sensor.exe MyComponent_Sensor_d.xml }}} Linux release: {{{#!sh ./Sensor MyComponent_Sensor.xml }}} == Using your own executable == Use ```ComponentManager```. TODO