ethereum / remix-desktop

Remix IDE desktop
1.03k stars 265 forks source link

BUG: Debian Install #159

Closed PedroAntunes178 closed 7 months ago

PedroAntunes178 commented 1 year ago

Hello, when installing on Debian/Linux with the .deb package, there is an issue with libappindicator3-1. Since libappindicator3-1 was deprecated. The error received is:

The following packages have unmet dependencies:
 remix-ide : Depends: libappindicator3-1 but it is not installable
E: Unable to correct problems, you have held broken packages.

Current solution is:

dpkg-deb -x remix-ide_1.3.4_amd64.deb unpack
dpkg-deb --control remix-ide_1.3.4_amd64.deb unpack/DEBIAN
sudo nano ./unpack/DEBIAN/control # Replace libappindicator3-1 with libayatana-appindicator3-1.
dpkg -b unpack remix-ide.deb
sudo apt install ./remix-ide.deb

I think this could be easily fixed on future releases.