Here for linux mint users:
I followed irdroid3 answer in - github
with some changes.
I am using the deb file (Brackets.Release.1.14.1.64-bit.deb) on linux mint xfce 20
Here are the steps that worked for me :
Open terminal in temporary folder in your home directory. Use :
dpkg-deb -x /path/to/deb/file .
dpkg-deb -e Brackets.Release.1.14.1.64-bit.deb
Edit the control file : ./DEBIAN/control
Change line with dependency from libcurl3 to libcurl3 | libcurl4
deleted the original deb file or put it in another place
Run: cd /temporary folder
Run: chmod 755 *
If you get an error like that:
dpkg-deb: error: the script "postinst" of the maintainer does not have the right permissions 777 (must be >=0755 and <=0775)
try to find the file concerned and Run: chmod 755 * in his diretory(folder) for exemple: /temporary folder/DEBIAN for the file postinst
Run : dpkg-deb -b . Bracket_CURL4.deb in temporary folder
Launch file browser and double click on the created deb file to launch the install.
Issue by Aimeric-Kiuto Monday Jan 04, 2021 at 19:20 GMT Originally opened as https://github.com/adobe/brackets/issues/15300
Here for linux mint users: I followed irdroid3 answer in - github with some changes. I am using the deb file (Brackets.Release.1.14.1.64-bit.deb) on linux mint xfce 20 Here are the steps that worked for me :
Open terminal in temporary folder in your home directory. Use :
dpkg-deb -x /path/to/deb/file .
dpkg-deb -e Brackets.Release.1.14.1.64-bit.deb
Edit the control file : ./DEBIAN/control
Change line with dependency from
libcurl3
tolibcurl3 | libcurl4
deleted the original deb file or put it in another place
Run:
cd /temporary folder
Run:
chmod 755 *
If you get an error like that:
dpkg-deb: error: the script "postinst" of the maintainer does not have the right permissions 777 (must be >=0755 and <=0775)
try to find the file concerned and Run:chmod 755 *
in his diretory(folder) for exemple:/temporary folder/DEBIAN
for the filepostinst
Run :
dpkg-deb -b . Bracket_CURL4.deb
in temporary folderLaunch file browser and double click on the created deb file to launch the install.
All done, Brackets program is installed.
Originally posted by
@
irdroid3 in https://github.com/adobe/brackets/issues/15297#issuecomment-752983532