Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: How do I install software from a downloaded zip file?

  1. #1
    Join Date
    Aug 2013
    Beans
    376

    How do I install software from a downloaded zip file?

    I usually install from the software center. If something in not in the software center and I download it from a web site, how do I install it. I did a google and all the instructions I saw seemed very complex. I know I did this years ago and it was not that complicated but now I can't remember what I did or find simple instructions.

  2. #2
    Join Date
    Nov 2007
    Location
    Les Gets, France
    Beans
    753
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: How do I install software from a downloaded zip file?

    Hi

    Normally if you download a package for ubuntu it is a .deb file. Open it with gdebi package installer. (If you dont have that, install gdebi with synaptic or from the ubuntu software centre)

    Roger

  3. #3
    Join Date
    Aug 2011
    Location
    52.5° N 6.4° E
    Beans
    6,820
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: How do I install software from a downloaded zip file?

    A .deb file can also be installed from command line using dpkg.

    If the software comes in some kind of archive format, there are no standard instructions. Unpack the archive and look for a README or INSTALL file and read that. Then, use all the Linux knowledge you have and install it.

  4. #4
    Join Date
    Dec 2014
    Beans
    2,573

    Re: How do I install software from a downloaded zip file?

    A zip file is just about the worst container for a Linux program possible because zip can't store the attributes of a Linux file (and that includes the bit to mark a program as executable). If somebody uses that, he should have included some documentation. Without knowing what program you're trying to install it's hard to give you any help. It might be some binary that just needs it's attributes set or there might be a script in there you can execute to get the rest of the program set up or it might be source code that needs building and installing; I can't be more precise without more information.

  5. #5
    Join Date
    Mar 2006
    Location
    Williams Lake
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How do I install software from a downloaded zip file?

    It would probably help if you let use know what the name of the file is.

  6. #6
    Join Date
    Aug 2013
    Beans
    4,941

    Re: How do I install software from a downloaded zip file?

    Depends on what is inside the .zip file, can be source codes, an install script or a binary. What is it?

  7. #7
    Join Date
    Aug 2013
    Beans
    3

    Re: How do I install software from a downloaded zip file?

    If it is a zip file, you would first want to navigate to the folder where it got placed using cd


    cd ~/Downloads
    This navigates to the download folder of the current user;

    Then extract the file using unzip, if needed install unzip using

    sudo apt-get install unzip
    sudo unzip file
    then in order to install the file, say its called installer.deb

    sudo dpkg -i installer

  8. #8
    Join Date
    Oct 2005
    Location
    Lab, Slovakia
    Beans
    10,790

    Re: How do I install software from a downloaded zip file?

    In general, you unzip or untar it, then you read the INSTALL file and the README file and then you cross your fingers and do what they say...

  9. #9
    Join Date
    Nov 2014
    Beans
    7

    Re: How do I install software from a downloaded zip file?

    Mostly, software included in zips contain a readme file somewhere (Or in the site you downloaded them). If it's a deb file you can just open it up using sofware center.

    ~Misterio

  10. #10
    Join Date
    May 2009
    Location
    Indiana
    Beans
    1,971
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: How do I install software from a downloaded zip file?

    The replies so far have been right on the money. Keep in mind, the more you deviate from software in the repos (adding PPAs or especially installing from .zips or tarballs), the more likely you are to bork your system.

    Packages installed without using apt (either through the command line or SC or Synaptic) will not have their dependencies automatically handled. Just because things work fine today doesn't mean they will in the future.

    There aren't viruses for Linux in the wild, but that doesn't mean there aren't malicious scripts you could download and execute thinking they were something else. Consider the source and why you trust them.
    Jane, stop this crazy thing!

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •