When I try to install a .deb file it takes me to Ubuntu Software Center and doesn't install [duplicate]
This question already has an answer here:
How do I install a .deb file via the command line?
9 answers
I've downloaded the .deb
file of the Brackets editor and tried to install it. It takes me to the Ubuntu Software Centre to install the file, then after the installation completes it shows the Install button, instead of showing the Launch and Remove buttons.
This happens every time I try to install a .deb
file.
I'm running the latest Ubuntu 18.04.1 LTS update.
18.04 software-installation deb
marked as duplicate by N0rbert, PerlDuck, karel, Eric Carvalho, Zanna Jan 19 at 20:12
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How do I install a .deb file via the command line?
9 answers
I've downloaded the .deb
file of the Brackets editor and tried to install it. It takes me to the Ubuntu Software Centre to install the file, then after the installation completes it shows the Install button, instead of showing the Launch and Remove buttons.
This happens every time I try to install a .deb
file.
I'm running the latest Ubuntu 18.04.1 LTS update.
18.04 software-installation deb
marked as duplicate by N0rbert, PerlDuck, karel, Eric Carvalho, Zanna Jan 19 at 20:12
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
1
Try to install from command line usingdpkg -i file.deb
.
– P_Yadav
Jan 13 at 15:04
Did you double click on it or you used the don't install command.
– George Udosen
Jan 13 at 15:04
install gdebi and associate it with deb files
– cipricus
Jan 13 at 15:06
Try installing the pakcage using the command line: sudo dpkg -i <debfile>, This will eventually provide error messages that hint on what might be wrong.
– vanadium
Jan 13 at 17:34
add a comment |
This question already has an answer here:
How do I install a .deb file via the command line?
9 answers
I've downloaded the .deb
file of the Brackets editor and tried to install it. It takes me to the Ubuntu Software Centre to install the file, then after the installation completes it shows the Install button, instead of showing the Launch and Remove buttons.
This happens every time I try to install a .deb
file.
I'm running the latest Ubuntu 18.04.1 LTS update.
18.04 software-installation deb
This question already has an answer here:
How do I install a .deb file via the command line?
9 answers
I've downloaded the .deb
file of the Brackets editor and tried to install it. It takes me to the Ubuntu Software Centre to install the file, then after the installation completes it shows the Install button, instead of showing the Launch and Remove buttons.
This happens every time I try to install a .deb
file.
I'm running the latest Ubuntu 18.04.1 LTS update.
This question already has an answer here:
How do I install a .deb file via the command line?
9 answers
18.04 software-installation deb
18.04 software-installation deb
edited Jan 19 at 19:43
Zanna
50.7k13135241
50.7k13135241
asked Jan 13 at 15:02
geeky_sohamgeeky_soham
223
223
marked as duplicate by N0rbert, PerlDuck, karel, Eric Carvalho, Zanna Jan 19 at 20:12
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by N0rbert, PerlDuck, karel, Eric Carvalho, Zanna Jan 19 at 20:12
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
1
Try to install from command line usingdpkg -i file.deb
.
– P_Yadav
Jan 13 at 15:04
Did you double click on it or you used the don't install command.
– George Udosen
Jan 13 at 15:04
install gdebi and associate it with deb files
– cipricus
Jan 13 at 15:06
Try installing the pakcage using the command line: sudo dpkg -i <debfile>, This will eventually provide error messages that hint on what might be wrong.
– vanadium
Jan 13 at 17:34
add a comment |
1
Try to install from command line usingdpkg -i file.deb
.
– P_Yadav
Jan 13 at 15:04
Did you double click on it or you used the don't install command.
– George Udosen
Jan 13 at 15:04
install gdebi and associate it with deb files
– cipricus
Jan 13 at 15:06
Try installing the pakcage using the command line: sudo dpkg -i <debfile>, This will eventually provide error messages that hint on what might be wrong.
– vanadium
Jan 13 at 17:34
1
1
Try to install from command line using
dpkg -i file.deb
.– P_Yadav
Jan 13 at 15:04
Try to install from command line using
dpkg -i file.deb
.– P_Yadav
Jan 13 at 15:04
Did you double click on it or you used the don't install command.
– George Udosen
Jan 13 at 15:04
Did you double click on it or you used the don't install command.
– George Udosen
Jan 13 at 15:04
install gdebi and associate it with deb files
– cipricus
Jan 13 at 15:06
install gdebi and associate it with deb files
– cipricus
Jan 13 at 15:06
Try installing the pakcage using the command line: sudo dpkg -i <debfile>, This will eventually provide error messages that hint on what might be wrong.
– vanadium
Jan 13 at 17:34
Try installing the pakcage using the command line: sudo dpkg -i <debfile>, This will eventually provide error messages that hint on what might be wrong.
– vanadium
Jan 13 at 17:34
add a comment |
1 Answer
1
active
oldest
votes
Gdebi is the best gui tool out there.
sudo apt install gdebi
I don't use Gdebi wright now because I'm in Kubuntu and avoid gtk apps. What I do is use the file ~/.local/share/applications/install_deb_term.desktop
with the lines
[Desktop Entry]
Name=Install in terminal with apt
Comment=Install deb files in terminal with apt
Exec=sudo apt install %f
Icon=gdebi
Terminal=true
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Settings;HardwareSettings;X-GNOME-Settings-Panel;System;
then select the deb file, "Open with" and select "Install in terminal"...
The desktop file I use is a bit different, more kde-specific. I useTerminal=false
andExec=konsole --hold -e sudo apt install %f
to keep the terminal open after finish. In gnome-terminal you need a new profile set to keep window open and the lineExec=gnome-terminal --window-with-profile=PROFILENAME -e 'sudo apt install %f'
.
– cipricus
Jan 13 at 15:59
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Gdebi is the best gui tool out there.
sudo apt install gdebi
I don't use Gdebi wright now because I'm in Kubuntu and avoid gtk apps. What I do is use the file ~/.local/share/applications/install_deb_term.desktop
with the lines
[Desktop Entry]
Name=Install in terminal with apt
Comment=Install deb files in terminal with apt
Exec=sudo apt install %f
Icon=gdebi
Terminal=true
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Settings;HardwareSettings;X-GNOME-Settings-Panel;System;
then select the deb file, "Open with" and select "Install in terminal"...
The desktop file I use is a bit different, more kde-specific. I useTerminal=false
andExec=konsole --hold -e sudo apt install %f
to keep the terminal open after finish. In gnome-terminal you need a new profile set to keep window open and the lineExec=gnome-terminal --window-with-profile=PROFILENAME -e 'sudo apt install %f'
.
– cipricus
Jan 13 at 15:59
add a comment |
Gdebi is the best gui tool out there.
sudo apt install gdebi
I don't use Gdebi wright now because I'm in Kubuntu and avoid gtk apps. What I do is use the file ~/.local/share/applications/install_deb_term.desktop
with the lines
[Desktop Entry]
Name=Install in terminal with apt
Comment=Install deb files in terminal with apt
Exec=sudo apt install %f
Icon=gdebi
Terminal=true
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Settings;HardwareSettings;X-GNOME-Settings-Panel;System;
then select the deb file, "Open with" and select "Install in terminal"...
The desktop file I use is a bit different, more kde-specific. I useTerminal=false
andExec=konsole --hold -e sudo apt install %f
to keep the terminal open after finish. In gnome-terminal you need a new profile set to keep window open and the lineExec=gnome-terminal --window-with-profile=PROFILENAME -e 'sudo apt install %f'
.
– cipricus
Jan 13 at 15:59
add a comment |
Gdebi is the best gui tool out there.
sudo apt install gdebi
I don't use Gdebi wright now because I'm in Kubuntu and avoid gtk apps. What I do is use the file ~/.local/share/applications/install_deb_term.desktop
with the lines
[Desktop Entry]
Name=Install in terminal with apt
Comment=Install deb files in terminal with apt
Exec=sudo apt install %f
Icon=gdebi
Terminal=true
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Settings;HardwareSettings;X-GNOME-Settings-Panel;System;
then select the deb file, "Open with" and select "Install in terminal"...
Gdebi is the best gui tool out there.
sudo apt install gdebi
I don't use Gdebi wright now because I'm in Kubuntu and avoid gtk apps. What I do is use the file ~/.local/share/applications/install_deb_term.desktop
with the lines
[Desktop Entry]
Name=Install in terminal with apt
Comment=Install deb files in terminal with apt
Exec=sudo apt install %f
Icon=gdebi
Terminal=true
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Settings;HardwareSettings;X-GNOME-Settings-Panel;System;
then select the deb file, "Open with" and select "Install in terminal"...
answered Jan 13 at 15:15
cipricuscipricus
10.3k47173342
10.3k47173342
The desktop file I use is a bit different, more kde-specific. I useTerminal=false
andExec=konsole --hold -e sudo apt install %f
to keep the terminal open after finish. In gnome-terminal you need a new profile set to keep window open and the lineExec=gnome-terminal --window-with-profile=PROFILENAME -e 'sudo apt install %f'
.
– cipricus
Jan 13 at 15:59
add a comment |
The desktop file I use is a bit different, more kde-specific. I useTerminal=false
andExec=konsole --hold -e sudo apt install %f
to keep the terminal open after finish. In gnome-terminal you need a new profile set to keep window open and the lineExec=gnome-terminal --window-with-profile=PROFILENAME -e 'sudo apt install %f'
.
– cipricus
Jan 13 at 15:59
The desktop file I use is a bit different, more kde-specific. I use
Terminal=false
and Exec=konsole --hold -e sudo apt install %f
to keep the terminal open after finish. In gnome-terminal you need a new profile set to keep window open and the line Exec=gnome-terminal --window-with-profile=PROFILENAME -e 'sudo apt install %f'
.– cipricus
Jan 13 at 15:59
The desktop file I use is a bit different, more kde-specific. I use
Terminal=false
and Exec=konsole --hold -e sudo apt install %f
to keep the terminal open after finish. In gnome-terminal you need a new profile set to keep window open and the line Exec=gnome-terminal --window-with-profile=PROFILENAME -e 'sudo apt install %f'
.– cipricus
Jan 13 at 15:59
add a comment |
1
Try to install from command line using
dpkg -i file.deb
.– P_Yadav
Jan 13 at 15:04
Did you double click on it or you used the don't install command.
– George Udosen
Jan 13 at 15:04
install gdebi and associate it with deb files
– cipricus
Jan 13 at 15:06
Try installing the pakcage using the command line: sudo dpkg -i <debfile>, This will eventually provide error messages that hint on what might be wrong.
– vanadium
Jan 13 at 17:34