Celeb Glow
general | March 19, 2026

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 )

0

1 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/QuestPatcher

then call it from terminal using QuestPatcher.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy