how do i install an app from the zip file i have?
How would I install a .zip file from terminal? I'm trying to install an app from a .zip file and when I try change directory (filename) nothing comes up. I know i'm doing something wrong but this is all confusing to me because i'm new.(The file i'm trying to install is called QuestPatcher-ubuntu.zip in )
01 Answer
You have to download the zip-file, extract it and put to some directory in $PATH variable:
cd ~/Downloads
wget -c
unzip QuestPatcher-ubuntu.zip
chmod +x QuestPatcher
sudo mv QuestPatcher /usr/local/bin/QuestPatcherthen call it from terminal using QuestPatcher.