ubuntu18.04安装sublime教程
时间: 2023-12-09 14:04:41 浏览: 89
ubuntu下安装sublime text
Sure! Here is a step-by-step tutorial on how to install Sublime Text on Ubuntu 18.04:
1. Open a terminal by pressing Ctrl+Alt+T.
2. Add the Sublime Text repository by running the following command:
```
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
```
3. Next, add the repository to your system's software sources:
```
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
```
4. Update the package lists by running:
```
sudo apt update
```
5. Finally, install Sublime Text by running:
```
sudo apt install sublime-text
```
Once the installation is complete, you can start Sublime Text by searching for it in the applications menu or by running the command `subl` in the terminal.
I hope this helps! Let me know if you have any further questions.
阅读全文