Results 1 to 8 of 8

Thread: I just installed 17.04 and am having trouble installing Chrome Browser

  1. #1
    Join Date
    Oct 2005
    Location
    Wabasha MN
    Beans
    2,571
    Distro
    Ubuntu

    I just installed 17.04 and am having trouble installing Chrome Browser

    I down loaded Chrome browser and tried to install using DEB package installer. Would not install so I tried a Terminal Install here here is what I am getting.
    Code:
    irv@irv-Q500A:~/Downloads$ ls
    google-chrome-stable_current_amd64.deb
    irv@irv-Q500A:~/Downloads$ sudo apt install google-chrome-stable_current_amd64.deb
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    E: Unable to locate package google-chrome-stable_current_amd64.deb
    E: Couldn't find any package by glob 'google-chrome-stable_current_amd64.deb'
    E: Couldn't find any package by regex 'google-chrome-stable_current_amd64.deb''
    It's telling me it can't find the file but it's there. I did a copy paste so I wouldn't have any typeos
    Information on my Main laptop. Information on my small laptop Dell 11 3000
    Using a Asus 3632QM laptop with 8gig RAM, 250 SSD.
    Machine Registered 366271, 366273, 366275.
    Registered Ubuntu user number 18630. Registered Linux user number 458093.

  2. #2
    Join Date
    Apr 2011
    Location
    Mystletainn Kick!
    Beans
    13,613
    Distro
    Ubuntu

    Re: I just installed 17.04 and am having trouble installing Chrome Browser

    I think apt wants the full path, unlike dpkg which you can just move into the directory and install.
    try with ~/Downloads/google-blah>.deb
    Splat Double Splat Triple Splat
    Earn Your Keep
    Don't mind me, I'm only passing through.
    Once in a blue moon, I'm actually helpful
    .

  3. #3
    Join Date
    Oct 2005
    Location
    Wabasha MN
    Beans
    2,571
    Distro
    Ubuntu

    Re: I just installed 17.04 and am having trouble installing Chrome Browser

    I followed the instructions on here and got it installed. I will mark it solved.
    https://askubuntu.com/questions/5100...-google-chrome
    Information on my Main laptop. Information on my small laptop Dell 11 3000
    Using a Asus 3632QM laptop with 8gig RAM, 250 SSD.
    Machine Registered 366271, 366273, 366275.
    Registered Ubuntu user number 18630. Registered Linux user number 458093.

  4. #4
    Join Date
    Oct 2006
    Beans
    58,286

    Re: I just installed 17.04 and am having trouble installing Chrome Browser

    Quote Originally Posted by deadflowr View Post
    I think apt wants the full path, unlike dpkg which you can just move into the directory and install.
    try with ~/Downloads/google-blah>.deb
    +1 for apt needing the full path.

    Sidenote : I generally copy/paste the file into the terminal and amend the path accordingly, tab completion doesn't work for me when doing a local deb package install with apt.

  5. #5
    Join Date
    Feb 2015
    Location
    Florida
    Beans
    Hidden!
    Distro
    Ubuntu Mate Development Release

    Re: I just installed 17.04 and am having trouble installing Chrome Browser

    I believe Google chrome is also in the Ubuntu repository I just checked and I see it listed

  6. #6
    Join Date
    Jun 2006
    Location
    UK
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: I just installed 17.04 and am having trouble installing Chrome Browser

    Quote Originally Posted by RobGoss View Post
    I believe Google chrome is also in the Ubuntu repository I just checked and I see it listed
    We need to distinguish the google-chrome-stable package from the chromium-browser package. The OP is referring to the google-chrome-stable package which is not in the Ubuntu repositories. You will only see google-chrome-stable in your package manager if you enable the dl.google.com repository. This is enabled by installing the downloaded google-chrome-stable deb package. Chromium-browser, on the other hand, is in the Ubuntu Universe repository.

    For what it's worth, and for others coming across this thread, for google chrome I make sure I have gdebi installed (which I find more reliable than "Ubuntu Software" for downloaded deb packages), and then right-click on the google-chrome-stable deb file and "open with..." gdebi.
    Ubuntu 20.04 Desktop Guide - Ubuntu 22.04 Desktop Guide - Forum Guide to BBCode - Using BBCode code tags

    Member: Not Canonical Team

    If you need help with your forum account, such as SSO login issues, username changes, etc, the correct place to contact an admin is here. Please do not PM me about these matters unless you have been asked to - unsolicited PMs concerning forum accounts will be ignored.

  7. #7
    Join Date
    Oct 2005
    Location
    Wabasha MN
    Beans
    2,571
    Distro
    Ubuntu

    Re: I just installed 17.04 and am having trouble installing Chrome Browser

    Quote Originally Posted by coffeecat View Post
    We need to distinguish the google-chrome-stable package from the chromium-browser package. The OP is referring to the google-chrome-stable package which is not in the Ubuntu repositories. You will only see google-chrome-stable in your package manager if you enable the dl.google.com repository. This is enabled by installing the downloaded google-chrome-stable deb package. Chromium-browser, on the other hand, is in the Ubuntu Universe repository.

    For what it's worth, and for others coming across this thread, for google chrome I make sure I have gdebi installed (which I find more reliable than "Ubuntu Software" for downloaded deb packages), and then right-click on the google-chrome-stable deb file and "open with..." gdebi.
    Your right it is not in the repository. What I did was add it.
    Code:
    wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
    Then
    Code:
    sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
    Did update
    Code:
    sudo apt update
    Then installed the package.
    Code:
    sudo apt-get install google-chrome-stable
    Information on my Main laptop. Information on my small laptop Dell 11 3000
    Using a Asus 3632QM laptop with 8gig RAM, 250 SSD.
    Machine Registered 366271, 366273, 366275.
    Registered Ubuntu user number 18630. Registered Linux user number 458093.

  8. #8
    Join Date
    Feb 2015
    Location
    Florida
    Beans
    Hidden!
    Distro
    Ubuntu Mate Development Release

    Re: I just installed 17.04 and am having trouble installing Chrome Browser

    We need to distinguish the google-chrome-stable package from the chromium-browser package. The OP is referring to the google-chrome-stable package which is not in the Ubuntu repositories
    Coffecat you are correct about installing the gdebi installer I had to do this in one of my machines thanks for the clarification
    Last edited by RobGoss; April 14th, 2017 at 01:03 PM.

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
  •