brackets-archive / bracketsIssues

Archive of issues in brackets.
0 stars 0 forks source link

Depency libcurl3 can't be installed in linux mint 20(Ubuntu 20.04) #14830

Open core-ai-bot opened 3 years ago

core-ai-bot commented 3 years ago

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 :

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

  2. Edit the control file : ./DEBIAN/control

  3. Change line with dependency from libcurl3 to libcurl3 | libcurl4

  4. deleted the original deb file or put it in another place

  5. Run: cd /temporary folder

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

  7. Run : dpkg-deb -b . Bracket_CURL4.deb in temporary folder

  8. Launch file browser and double click on the created deb file to launch the install.

  9. All done, Brackets program is installed.

Originally posted by@irdroid3 in https://github.com/adobe/brackets/issues/15297#issuecomment-752983532