일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- machine learning
- object detection
- BFS
- YoLO
- 딥러닝
- 강화학습
- two-stage detector
- real-time object detection
- dfs
- canny edge detection
- C++
- 그래프 이론
- 머신러닝
- Reinforcement Learning
- Python
- CNN
- image processing
- DP
- LSTM
- One-Stage Detector
- eecs 498
- opencv
- r-cnn
- deep learning
- 백준
- AlexNet
- MySQL
- MinHeap
- Mask Processing
- dynamic programming
- Today
- Total
JINWOOJUNG
[ Linux Issue ] Sublime Text & Sublime Merge Install 본문
Linux 환경에서 개발 시 이전까지는 Visual Studio Code를 기반으로 작업하였다. 하지만 통합코드를 기반으로 대회를 준비하면서 Git을 사용하게 되고, Git 충돌이나 Commit 간의 차이를 확인할 때 Sublime Merge를 많이 사용하게 되면서 주 개발 툴도 Sublime Text로 바뀌게 되었다. 오늘은 간단하게 Sublime Text & Sublime Merge Install에 관하여 정리하고자 한다.
Development Environment
Ubuntu 20.04
Sublime Text
여러 방법이 있지만 apt를 통해 설치하는 것을 추천한다.
https://www.sublimetext.com/docs/linux_repositories.html
Linux Package Manager Repositories
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
www.sublimetext.com
1. GPG key 입력
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/sublimehq-archive.gpg > /dev/null
2. Channel : 일반적으로 Stable을 사용한다.
- Stable
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
- Dev
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
3. Update
sudo apt-get update
4. Install
sudo apt-get install sublime-text
5. Error
만약 apt 기반 설치가 실패하면 apt가 https 소스를 사용하도록 설정해야 한다.
sudo apt-get install apt-transport-https
Sublime Merge
Sublime Merge는 Git 사용 시 효과적이다. 각 Commit이 Update 되면서 바뀐 부분이나, 충돌이 발생한 경우 Rebase에도 용이하다.
https://www.sublimemerge.com/docs/linux_repositories
Linux Package Manager Repositories – Sublime Merge Documentation
Sublime Merge includes an auto-upgrade mechanism on Windows and OS X 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 th
www.sublimemerge.com
1. GPG key 입력
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/sublimehq-archive.gpg > /dev/null
2. https 소스 사용 설정
sudo apt-get install apt-transport-https
3. Channel : 일반적으로 Stable을 사용한다
- Stable
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
- Dev
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
4. Update
sudo apt-get update
5. Install
sudo apt-get install sublime-merge
'Linux&ROS Issue' 카테고리의 다른 글
[Linux Issue] Terminal 안켜짐 (0) | 2025.01.18 |
---|---|
[ Linux Issue ] cuDNN 설치 (0) | 2024.07.09 |