- Установка Sublime Text 3 Ubuntu 20.04
- Установка Sublime Text 3 в Ubuntu
- 1. Репозиторий разработчиков
- 2. Центр приложений
- 3. Пакет snap
- 4. Пакет flatpak
- Удаление Sublime Text 3
- Выводы
- Installing sublime text on linux
- apt🔗
- pacman🔗
- yum🔗
- dnf🔗
- zypper🔗
- How to Install Sublime Text 3 on Ubuntu 22.04
- How to install Sublime Text 3 on Ubuntu 22.04
- Conclusion
- About the author
- Sharqa Hameed
Установка Sublime Text 3 Ubuntu 20.04
Sublime Text 3 — это мощный, кроссплатформенный текстовый редактор для программистов. Он поддерживает подсветку синтаксиса, редактирование разметки, поиск ошибок, имеет API на Python и движок регулярных выражений, который ускоряет работу с файлами.
Возможности редактора можно очень сильно расширить с помощью плагинов. В этой статье мы рассмотрим как выполняется установка Sublime Text 3 Ubuntu 20.04 из PPA или с помощью пакета, загруженного из официального сайта.
Установка Sublime Text 3 в Ubuntu
1. Репозиторий разработчиков
Сначала поговорим как установить программу из репозитория разработчиков. Этот репозиторий можно добавить также в другие версии этого дистрибутива. Сначала необходимо установить нужные зависимости. Для этого откройте терминал (Ctrl+Alt+T) и выполните:
sudo apt install dirmngr gnupg apt-transport-https ca-certificates software-properties-common
Дальше необходимо добавить ключ репозитория:
curl -fsSL https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add —
И наконец можно установить сам репозиторий:
sudo add-apt-repository «deb https://download.sublimetext.com/apt/stable/»
Затем установка Sublime Text 3:
sudo apt install sublime-text
После этого, программа будет установлена и готова к использованию. Вы можете найти ее в главном меню:
Главное окно программы выглядит вот так:
2. Центр приложений
Также вы можете установить программу из центра приложений. Для этого запустите центр приложений и наберите в поиске Sublime:
Затем выберите Sublime Text и нажмите кнопку Установить:
После завершения установки вы сможете запустить программу.
3. Пакет snap
Для того чтобы установить самую новую версию Sublime Text 3 можно воспользоваться пакетным менеджером snap. Сначала надо проверить есть ли такой пакет:
Затем можно установить саму программу:
sudo snap install sublime-text —classic
4. Пакет flatpak
Если в вашей системе установлен пакетный менеджер flatpak, то вы можете получить последнюю версию программы из FlatHub. Для этого выполните:
flatpak install flathub com.sublimetext.three
Для запуска программы необходимо выполнить:
flatpak run com.sublimetext.three
Удаление Sublime Text 3
Для удаления Sublime Text 3 установленного из репозиториев достаточно выполнить:
sudo apt purge sublime-text
Теперь программа полностью удалена из вашей системы. Для удаления snap пакета надо выполнить:
sudo snap remove sublime-text
Для удаления пакета flatpak выполните:
sudo flatpak uninstall com.sublimetext.three
Выводы
В этой статье мы рассмотрели как установить sublime text 3 в Ubuntu. Все очень просто. На завершение видео с процессом установки:
Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.
Installing sublime text on linux
Sublime Text includes an auto-upgrade mechanism on Windows and Mac to make upgrades a snap. Instead of going against the grain of the Linux ecosystem, packages and package repositories are provided for most of the major distributions.
Builds listed in the dev channel are only available to licensed users. Users who are evaluating Sublime Text before purchase will need to use the stable channel.
apt🔗
The apt repository contains packages for both x86-64 and arm64.
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/sublimehq-archive.gpg > /dev/null
Select the channel to use:
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
Update apt sources and install Sublime Text:
sudo apt-get update sudo apt-get install sublime-text
If this fails ensure apt is set up to work with https sources:
sudo apt-get install apt-transport-https
pacman🔗
curl -O https://download.sublimetext.com/sublimehq-pub.gpg && sudo pacman-key --add sublimehq-pub.gpg && sudo pacman-key --lsign-key 8A8F901A && rm sublimehq-pub.gpg
Select the channel to use:
echo -e "\n[sublime-text]\nServer = https://download.sublimetext.com/arch/stable/x86_64" | sudo tee -a /etc/pacman.conf
echo -e "\n[sublime-text]\nServer = https://download.sublimetext.com/arch/dev/x86_64" | sudo tee -a /etc/pacman.conf
echo -e "\n[sublime-text]\nServer = https://download.sublimetext.com/arch/stable/aarch64" | sudo tee -a /etc/pacman.conf
echo -e "\n[sublime-text]\nServer = https://download.sublimetext.com/arch/dev/aarch64" | sudo tee -a /etc/pacman.conf
Update pacman and install Sublime Text:
sudo pacman -Syu sublime-text
yum🔗
sudo rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg
Select the channel to use:
sudo yum-config-manager --add-repo https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo
sudo yum-config-manager --add-repo https://download.sublimetext.com/rpm/dev/x86_64/sublime-text.repo
Update yum and install Sublime Text:
sudo yum install sublime-text
Note there are no RPM packages for ARM currently.
dnf🔗
sudo rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg
Select the channel to use:
sudo dnf config-manager --add-repo https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo
sudo dnf config-manager --add-repo https://download.sublimetext.com/rpm/dev/x86_64/sublime-text.repo
Update dnf and install Sublime Text:
sudo dnf install sublime-text
Note there are no RPM packages for ARM currently.
zypper🔗
sudo rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg
Select the channel to use:
sudo zypper addrepo -g -f https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo
sudo zypper addrepo -g -f https://download.sublimetext.com/rpm/dev/x86_64/sublime-text.repo
Update zypper and install Sublime Text:
sudo zypper install sublime-text
Note there are no RPM packages for ARM currently.
How to Install Sublime Text 3 on Ubuntu 22.04
Sublime Text 3 is an efficient and popular code editor that is used for both front-end and back-end web development and can be customized with numerous plugins present on the web. You can code more than 20 programming languages on Sublime Text 3, such as C++, Python, Ruby, Java, etc. This code editor is fast and comes with an intuitive IDE and many other powerful features.
You can use this code editor on multiple platforms such as Windows, macOS, and Linux-based systems such as Ubuntu 22.04. However, in this blog, we will specifically discuss the procedure to install Sublime Text 3 on Ubuntu 22.04.
How to install Sublime Text 3 on Ubuntu 22.04
Installing Sublime Text 3 on Ubuntu 22.04 requires you to follow some steps, which have been demonstrated in the following procedure.
Step 1: Update System
Before you jump to installing the source code editor, press “CTRL+ALT+T” to open up the terminal and make sure that your system packages are up to date:
Press “Y” to continue:
Within a few minutes, all of the system packages will get updated.
Step 2: Install Curl
Now, you are required to install curl, which can be done using this command:
Step 3: Import the GPG key
Then, import the GPG key of Sublime Text 3:
Step 4: Import Sublime Text Repository
The next step is to import Sublime Text Apt Repository in your system by writing out the given command in the opened terminal:
It’s time to move to the next instruction.
Step 5: Sublime code editor installation
Now that you have all the required dependencies and repositories, install the Sublime code editor on your Ubuntu 22.04:
Step 6: Start Sublime
You can now search for the Sublime Text code editor in the “Activities” menu, open it from there and start writing your code:
We have compiled the easiest method to install Sublime Text 3 on Ubuntu 22.04.
Conclusion
For the purpose of installing Sublime Text 3 on Ubuntu 22.04, you need to have certain dependencies and repositories and then install the code editor using the “$ sudo apt install sublime-text” command. Once installed, you can find the source code editor in the “Activities” menu and start writing your code. This blog demonstrated the method of Sublime Text 3 installation on Ubuntu 22.04.
About the author
Sharqa Hameed
I am a Linux enthusiast, I love to read Every Linux blog on the internet. I hold masters degree in computer science and am passionate about learning and teaching.