I am trying to install discord in Kali Linux. I've downloaded the latest .deb file from the discord website. I typed gdebi discord-0.0.13.deb.
I am getting this error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
This package is uninstallable
Dependency is not satisfiable: libappindicator1How do I solve this error?
43 Answers
You can install it using snap. This helped me a lot on my Kali Linux journey.
Below are the instructions on how to enable snap on Debian and install Discord.
Enable
snapd:On Debian 9 (Stretch) and newer,
snapcan be installed directly from the command line:sudo apt update sudo apt install snapd sudo snap install coreInstall Discord
sudo snap install discord
Congratulations. You have successfully installed Discord.
You can read more about it here.
As of Jan 19 2021, the package libappindicator1 has been removed from Kali Linux:
I managed to install discord by downloading the .tar.gz version from and following the .tar.gz part of the guide here:
After following the steps, I was able to run discord it by typing ./Discord in a terminal.
What helped me with installing libappindicator1 on Debian and in Docker as well - is installing this package manually. Also, it depends on another one libindicator7.
curl -p --insecure "" --output libappindicator1_0.4.92-8_amd64.deb \ && curl -p --insecure "" --output libindicator7_0.5.0-4_amd64.deb \ && dpkg -i libindicator7_0.5.0-4_amd64.deb \ && dpkg -i libappindicator1_0.4.92-8_amd64.deb \ && rm libindicator7_0.5.0-4_amd64.deb \ && rm libappindicator1_0.4.92-8_amd64.deb 1