How to Install Brackets on Debian Latest
Brackets is an open-source text editor that is widely used for web development. In this tutorial, we will guide you on how to install Brackets on Debian Latest.
Prerequisites
Before installing Brackets, make sure that you have the following prerequisites:
- Debian latest version
- Root access or a user with sudo privileges
Step 1: Update and Upgrade the System
It is essential to update and upgrade your system before installing anything new on it. Use the following command to update your Debian system:
sudo apt-get update
Once the process is complete, upgrade your system with the command:
sudo apt-get upgrade
Step 2: Install Required Dependencies
Brackets requires some dependencies like libgcrypt11 and libgconf-2-4 to work correctly. Run the following command to install them:
sudo apt-get install libgcrypt11 libgconf-2-4
Step 3: Download Brackets
Download the latest version of Brackets from their official website at http://brackets.io/. To download the latest version of Brackets, use the following command:
wget https://github.com/adobe/brackets/releases/download/release-1.14.0/Brackets.Release.1.14.0.64-bit.deb
Step 4: Install Brackets
Once the download is complete, run the following command to install the Brackets package:
sudo dpkg -i Brackets.Release.1.14.0.64-bit.deb
Step 5: Launch Brackets
Brackets should now be installed on your Debian system. To launch Brackets, use the following command:
brackets
Conclusion
That's it! You have now installed Brackets on your Debian system. You can now start using Brackets for web development.