1# Installing and Running Your OpenHarmony App<a name="EN-US_TOPIC_0000001115941596"></a> 2 3To install your OpenHarmony app, use the hdc tool to manually run the corresponding commands. 4 5You can manually obtain the hdc tool from the open-source repository. Use the tool to send the compiled HAP package to the device and run the corresponding hdc commands to install the app. 6 7The hdc commands are as follows: 8 9- File sending 10 11 **file send _localpath remotepath_** 12 13 Example: 14 15 ``` 16 hdc_std file send E:\hwadmin.hap /data/local/tmp/hwadmin.hap 17 ``` 18 19- App installation 20 21 **install \[-r/-d/-g\] _package_** 22 23 Example: 24 25 ``` 26 hdc_std install hwadmin.hap 27 ``` 28 29- Log capturing 30 31 **hilog** 32 33 Example: 34 35 ``` 36 hdc_std hilog 37 ``` 38 39 40For details about how to use the hdc tool and the command format, see the open-source repository **docs/en/device-dev/subsystems/hdc-usage-guidelines.md**. 41 42