ritwik12 / Virtual-Assistant

A linux based Virtual assistant on Artificial Intelligence in C
GNU General Public License v3.0
129 stars 95 forks source link

Introduce make install and uninstall in makefile #107

Closed anindyasen closed 3 years ago

anindyasen commented 3 years ago

make install will install the binary and other dependencies in /usr/bin, this will help to run virtual_assistant accessible from anywhere. Uninstall will clean up the changes.

ritwik12 commented 3 years ago

@anindyasen How will someone execute it? For now one need to do ./build/virtual_assistant after make. Please update readme too accordingly.

anindyasen commented 3 years ago

@ritwik12 after make sudo make install then "virtual_assistant" will run it from any location to remove the changes: sudo make uninstall

ritwik12 commented 3 years ago

Ohk, that works fine. Thanks a lot!!