Unable to install .deb applications with ubuntu software [duplicate]

Clash Royale CLAN TAG#URR8PPP up vote
0
down vote
favorite
This question already has an answer here:
Unable to get Atom text editor from the Software Center
2 answers
I'm new to Ubuntu Environment. I'm using Ubuntu 16.04.3 LTS. I'm learning Web Development my own. I heard some good words about using Linux for Web Dev. So I just dual boot my Windows laptop with Ubuntu. After installation and software update. I visit atom.io to install Atom Text Editor. I downloaded the .deb file. I clicked on it and it took me to Ubuntu Software. I clicked on Install button but nothing happened.
I also tried to install with terminal and got this.
16.04 software-center atom gdebi
marked as duplicate by user535733, David Foerster, karel, Eric Carvalho, muru Mar 2 at 1:15
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 |Â
up vote
0
down vote
favorite
This question already has an answer here:
Unable to get Atom text editor from the Software Center
2 answers
I'm new to Ubuntu Environment. I'm using Ubuntu 16.04.3 LTS. I'm learning Web Development my own. I heard some good words about using Linux for Web Dev. So I just dual boot my Windows laptop with Ubuntu. After installation and software update. I visit atom.io to install Atom Text Editor. I downloaded the .deb file. I clicked on it and it took me to Ubuntu Software. I clicked on Install button but nothing happened.
I also tried to install with terminal and got this.
16.04 software-center atom gdebi
marked as duplicate by user535733, David Foerster, karel, Eric Carvalho, muru Mar 2 at 1:15
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.
Sudo apt-get install gdebiRef launchpad.net/gdebi
â EODCraft Staff
Feb 28 at 10:23
3
Also what you posted is not an error, you are just adding a repository.
â EODCraft Staff
Feb 28 at 10:28
But I didn't get the reason why I wasn't able to install by ubuntu software.
â Abhijeet Saha
Feb 28 at 14:35
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This question already has an answer here:
Unable to get Atom text editor from the Software Center
2 answers
I'm new to Ubuntu Environment. I'm using Ubuntu 16.04.3 LTS. I'm learning Web Development my own. I heard some good words about using Linux for Web Dev. So I just dual boot my Windows laptop with Ubuntu. After installation and software update. I visit atom.io to install Atom Text Editor. I downloaded the .deb file. I clicked on it and it took me to Ubuntu Software. I clicked on Install button but nothing happened.
I also tried to install with terminal and got this.
16.04 software-center atom gdebi
This question already has an answer here:
Unable to get Atom text editor from the Software Center
2 answers
I'm new to Ubuntu Environment. I'm using Ubuntu 16.04.3 LTS. I'm learning Web Development my own. I heard some good words about using Linux for Web Dev. So I just dual boot my Windows laptop with Ubuntu. After installation and software update. I visit atom.io to install Atom Text Editor. I downloaded the .deb file. I clicked on it and it took me to Ubuntu Software. I clicked on Install button but nothing happened.
I also tried to install with terminal and got this.
This question already has an answer here:
Unable to get Atom text editor from the Software Center
2 answers
16.04 software-center atom gdebi
16.04 software-center atom gdebi
edited Mar 1 at 16:03
asked Feb 28 at 10:12
Abhijeet Saha
92
92
marked as duplicate by user535733, David Foerster, karel, Eric Carvalho, muru Mar 2 at 1:15
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 user535733, David Foerster, karel, Eric Carvalho, muru Mar 2 at 1:15
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.
Sudo apt-get install gdebiRef launchpad.net/gdebi
â EODCraft Staff
Feb 28 at 10:23
3
Also what you posted is not an error, you are just adding a repository.
â EODCraft Staff
Feb 28 at 10:28
But I didn't get the reason why I wasn't able to install by ubuntu software.
â Abhijeet Saha
Feb 28 at 14:35
add a comment |Â
Sudo apt-get install gdebiRef launchpad.net/gdebi
â EODCraft Staff
Feb 28 at 10:23
3
Also what you posted is not an error, you are just adding a repository.
â EODCraft Staff
Feb 28 at 10:28
But I didn't get the reason why I wasn't able to install by ubuntu software.
â Abhijeet Saha
Feb 28 at 14:35
Sudo apt-get install gdebi Ref launchpad.net/gdebiâ EODCraft Staff
Feb 28 at 10:23
Sudo apt-get install gdebi Ref launchpad.net/gdebiâ EODCraft Staff
Feb 28 at 10:23
3
3
Also what you posted is not an error, you are just adding a repository.
â EODCraft Staff
Feb 28 at 10:28
Also what you posted is not an error, you are just adding a repository.
â EODCraft Staff
Feb 28 at 10:28
But I didn't get the reason why I wasn't able to install by ubuntu software.
â Abhijeet Saha
Feb 28 at 14:35
But I didn't get the reason why I wasn't able to install by ubuntu software.
â Abhijeet Saha
Feb 28 at 14:35
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
0
down vote
You can try doing it via the commandline with the following command:
sudo dpkg -i <name of package>.deb
To name is enough or should I specify the path of it?
â Abhijeet Saha
Feb 28 at 10:23
I got this - prntscr.com/iktt5p
â Abhijeet Saha
Feb 28 at 10:27
Maybe you have to go to the downloads folder?cd Downloads
â user3430996
Feb 28 at 10:30
This happened - prntscr.com/iku82q
â Abhijeet Saha
Feb 28 at 10:57
That looks like it worked.
â user3430996
Feb 28 at 11:18
 |Â
show 1 more comment
up vote
0
down vote
you can install any deb package by
sudo dpkg -i DEB_PACKAGE ,
if there is dependency problem you can solve it
sudo apt-get -f install
you can remove a package by
sudo dpkg -r PACKAGE_NAME
Jino Pl : »» you can install any deb package bysudo dpkg -i DEB_PACKAGE«« â Not if it has depencencies ! ... These commands will also install dependencies :sudo gdebi ./package.deb... andsudo apt install ./package.deb
â Knud Larsen
Feb 28 at 14:22
@KnudLarsen yah i understand , thanks
â Jino Pl
Mar 1 at 3:17
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You can try doing it via the commandline with the following command:
sudo dpkg -i <name of package>.deb
To name is enough or should I specify the path of it?
â Abhijeet Saha
Feb 28 at 10:23
I got this - prntscr.com/iktt5p
â Abhijeet Saha
Feb 28 at 10:27
Maybe you have to go to the downloads folder?cd Downloads
â user3430996
Feb 28 at 10:30
This happened - prntscr.com/iku82q
â Abhijeet Saha
Feb 28 at 10:57
That looks like it worked.
â user3430996
Feb 28 at 11:18
 |Â
show 1 more comment
up vote
0
down vote
You can try doing it via the commandline with the following command:
sudo dpkg -i <name of package>.deb
To name is enough or should I specify the path of it?
â Abhijeet Saha
Feb 28 at 10:23
I got this - prntscr.com/iktt5p
â Abhijeet Saha
Feb 28 at 10:27
Maybe you have to go to the downloads folder?cd Downloads
â user3430996
Feb 28 at 10:30
This happened - prntscr.com/iku82q
â Abhijeet Saha
Feb 28 at 10:57
That looks like it worked.
â user3430996
Feb 28 at 11:18
 |Â
show 1 more comment
up vote
0
down vote
up vote
0
down vote
You can try doing it via the commandline with the following command:
sudo dpkg -i <name of package>.deb
You can try doing it via the commandline with the following command:
sudo dpkg -i <name of package>.deb
answered Feb 28 at 10:17
user3430996
728
728
To name is enough or should I specify the path of it?
â Abhijeet Saha
Feb 28 at 10:23
I got this - prntscr.com/iktt5p
â Abhijeet Saha
Feb 28 at 10:27
Maybe you have to go to the downloads folder?cd Downloads
â user3430996
Feb 28 at 10:30
This happened - prntscr.com/iku82q
â Abhijeet Saha
Feb 28 at 10:57
That looks like it worked.
â user3430996
Feb 28 at 11:18
 |Â
show 1 more comment
To name is enough or should I specify the path of it?
â Abhijeet Saha
Feb 28 at 10:23
I got this - prntscr.com/iktt5p
â Abhijeet Saha
Feb 28 at 10:27
Maybe you have to go to the downloads folder?cd Downloads
â user3430996
Feb 28 at 10:30
This happened - prntscr.com/iku82q
â Abhijeet Saha
Feb 28 at 10:57
That looks like it worked.
â user3430996
Feb 28 at 11:18
To name is enough or should I specify the path of it?
â Abhijeet Saha
Feb 28 at 10:23
To name is enough or should I specify the path of it?
â Abhijeet Saha
Feb 28 at 10:23
I got this - prntscr.com/iktt5p
â Abhijeet Saha
Feb 28 at 10:27
I got this - prntscr.com/iktt5p
â Abhijeet Saha
Feb 28 at 10:27
Maybe you have to go to the downloads folder?
cd Downloadsâ user3430996
Feb 28 at 10:30
Maybe you have to go to the downloads folder?
cd Downloadsâ user3430996
Feb 28 at 10:30
This happened - prntscr.com/iku82q
â Abhijeet Saha
Feb 28 at 10:57
This happened - prntscr.com/iku82q
â Abhijeet Saha
Feb 28 at 10:57
That looks like it worked.
â user3430996
Feb 28 at 11:18
That looks like it worked.
â user3430996
Feb 28 at 11:18
 |Â
show 1 more comment
up vote
0
down vote
you can install any deb package by
sudo dpkg -i DEB_PACKAGE ,
if there is dependency problem you can solve it
sudo apt-get -f install
you can remove a package by
sudo dpkg -r PACKAGE_NAME
Jino Pl : »» you can install any deb package bysudo dpkg -i DEB_PACKAGE«« â Not if it has depencencies ! ... These commands will also install dependencies :sudo gdebi ./package.deb... andsudo apt install ./package.deb
â Knud Larsen
Feb 28 at 14:22
@KnudLarsen yah i understand , thanks
â Jino Pl
Mar 1 at 3:17
add a comment |Â
up vote
0
down vote
you can install any deb package by
sudo dpkg -i DEB_PACKAGE ,
if there is dependency problem you can solve it
sudo apt-get -f install
you can remove a package by
sudo dpkg -r PACKAGE_NAME
Jino Pl : »» you can install any deb package bysudo dpkg -i DEB_PACKAGE«« â Not if it has depencencies ! ... These commands will also install dependencies :sudo gdebi ./package.deb... andsudo apt install ./package.deb
â Knud Larsen
Feb 28 at 14:22
@KnudLarsen yah i understand , thanks
â Jino Pl
Mar 1 at 3:17
add a comment |Â
up vote
0
down vote
up vote
0
down vote
you can install any deb package by
sudo dpkg -i DEB_PACKAGE ,
if there is dependency problem you can solve it
sudo apt-get -f install
you can remove a package by
sudo dpkg -r PACKAGE_NAME
you can install any deb package by
sudo dpkg -i DEB_PACKAGE ,
if there is dependency problem you can solve it
sudo apt-get -f install
you can remove a package by
sudo dpkg -r PACKAGE_NAME
edited Mar 1 at 3:16
answered Feb 28 at 10:15
Jino Pl
394
394
Jino Pl : »» you can install any deb package bysudo dpkg -i DEB_PACKAGE«« â Not if it has depencencies ! ... These commands will also install dependencies :sudo gdebi ./package.deb... andsudo apt install ./package.deb
â Knud Larsen
Feb 28 at 14:22
@KnudLarsen yah i understand , thanks
â Jino Pl
Mar 1 at 3:17
add a comment |Â
Jino Pl : »» you can install any deb package bysudo dpkg -i DEB_PACKAGE«« â Not if it has depencencies ! ... These commands will also install dependencies :sudo gdebi ./package.deb... andsudo apt install ./package.deb
â Knud Larsen
Feb 28 at 14:22
@KnudLarsen yah i understand , thanks
â Jino Pl
Mar 1 at 3:17
Jino Pl : »» you can install any deb package by
sudo dpkg -i DEB_PACKAGE «« â Not if it has depencencies ! ... These commands will also install dependencies : sudo gdebi ./package.deb ... and sudo apt install ./package.debâ Knud Larsen
Feb 28 at 14:22
Jino Pl : »» you can install any deb package by
sudo dpkg -i DEB_PACKAGE «« â Not if it has depencencies ! ... These commands will also install dependencies : sudo gdebi ./package.deb ... and sudo apt install ./package.debâ Knud Larsen
Feb 28 at 14:22
@KnudLarsen yah i understand , thanks
â Jino Pl
Mar 1 at 3:17
@KnudLarsen yah i understand , thanks
â Jino Pl
Mar 1 at 3:17
add a comment |Â
Sudo apt-get install gdebiRef launchpad.net/gdebiâ EODCraft Staff
Feb 28 at 10:23
3
Also what you posted is not an error, you are just adding a repository.
â EODCraft Staff
Feb 28 at 10:28
But I didn't get the reason why I wasn't able to install by ubuntu software.
â Abhijeet Saha
Feb 28 at 14:35