
#Sublime linux code#
With VS Code running on your Chromebook, you can start coding easily and quickly in a variety of languages and frameworks. While Chromebooks and Chrome OS are typically centered around the web browser, you can also enable a Linux environment that allows installing native desktop applications, including Visual Studio Code! Thanks to lots of choices, from very affordable models to high-end ones, Chromebooks are especially popular among students, who can use them for learning, completing assignments, and attending classes virtually.
#Sublime linux install#
Here I introduced 3 ways to install Sublime Text in Ubuntu. The apt repository will not display in “Software & Updates” utility, so get rid of it by running command to remove the source file: sudo rm /etc/apt//sublime-text.listĪnd remove the key file by running command: sudo rm /usr/share/keyrings/sublimehq-pub.gpg Summary: deb package, remove it by running command: sudo apt remove -autoremove sublime-text
#Sublime linux software#
Then, install Sublime Text 3 via Flatpak by running command: flatpak install įor the Snap package, remove it either using Ubuntu Software or by running command in terminal: sudo snap remove -purge sublime-textįor the Flatpak package, use the command to uninstall the package: flatpak uninstall -delete-data Īnd cleanup useless run-times via flatpak uninstall -unused.įor the official. NOTE: Like Snap, the Sublime Text as flatpak is also un-official package maintained by contributors, runs in sandbox and updates automatically.įirstly, press Ctrl+Alt+T to open terminal and run command to install Flatpak daemon: sudo apt install flatpak But for the old version 3, you may install it by running the commands below one by one in terminal. Sublime Text 4 is NOT available as Flatpak so far.
#Sublime linux update#
Finally, update system package cache and install the code editor by running the following 2 commands one by one: sudo apt update sudo apt install sublime-text

This step can be done alternatively by running the single command below: echo "deb apt/stable/" | sudo tee /etc/apt//sublime-text.listĤ. When the file opens, add the following line ( it’s a single line) and save it.ĭeb apt/stable/ Next, run the command below to create a source file and edit it via Gedit text editor: sudo gedit /etc/apt//sublime-text.list It will download the key from its website, convert it to un-readable encrypted key, and put into “/usr/share/keyring” directory. And, it’s recommend to use the command below instead to install the key: wget -qO - | gpg -dearmor | sudo tee /usr/share/keyrings/sublimehq-pub.gpg The sublime text website still use the ‘ apt-key‘ command in its document, which is deprecated.įor security reason, Debian has updated the policy. When it opens, run the command below to make sure ‘https’ source is supported: sudo apt-get install apt-transport-https Firstly, press Ctrl+Alt+T on keyboard to open terminal. deb package works in Ubuntu, Linux Mint, Debian, and even Raspberry Pi OS (arm64).ġ.

The only downside could be that some do NOT like sandboxing apps.įor those prefer Linux commands, the package also can be installed by running the command below in terminal: sudo snap install sublime-text -classic Option 2: Official Apt repository

The snap package runs in sandbox and always up-to-date since it receives updates automatically. Install Sublime Text from Ubuntu Software
