Glam Prestige Journal

Bright entertainment trends with youth appeal.

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: libappindicator1

How do I solve this error?

4

3 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.

  1. Enable snapd:

    On Debian 9 (Stretch) and newer, snap can be installed directly from the command line:

    sudo apt update
    sudo apt install snapd
    sudo snap install core
  2. Install 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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy