Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- pandas
- Docker
- Python
- JSON
- ubuntu
- 기타 연주
- LIST
- YOLO
- SSH
- windows forms
- Visual Studio
- 오류
- C
- 채보
- error
- Selenium
- Numpy
- 명령어
- mysql
- pip
- 프로그래머스
- Linux
- paramiko
- VS Code
- label
- 핑거스타일
- OpenCV
- pytorch
- C#
- C++
Archives
- Today
- Total
기계는 거짓말하지 않는다
Ubuntu alternatives 확인, 삭제, 추가, 선택 본문
alternatives 명령어는 여러 버전의 패키지를 관리할 때 사용할 수 있다.
Alternative 확인
update-alternatives --list <alternative-name>
# <alternative-name>에는 확인할 alternative를 작성한다.
# ex) update-alternatives --list python
Alternative 삭제
sudo update-alternatives --remove <alternative-name> <alternative-path>
# <alternative-name> 삭제할 alternative, <alternative-path> alternative 경로를 입력한다.
# ex) sudo update-alternatives --remove python /usr/bin/python
Alternative 추가
sudo update-alternatives --install <alternative-name> <link-name> <alternative-path> <priority>
# <alternative-name> 설치할 alternative, <link-name> alternative link 이름, <alternative-path> alternative 경로, <priority> 우선순위를 입력한다.
# ex) sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1
Alternative 버전 선택
update-alternatives --config <alternative-name>
# <alternative-name> 설정할 alternative 이름
# ex) update-alternatives --config python
'Linux' 카테고리의 다른 글
sed 명령어를 이용한 일치하는 패턴이 포함 된 해당 줄 전체를 바꾸기 (0) | 2023.09.16 |
---|---|
sed 명령어를 이용한 일치하는 패턴 한 줄만 삭제하기 (0) | 2023.09.16 |
Ubuntu NFS 설정 (0) | 2023.08.25 |
Shell command 출력을 입력으로 사용 (0) | 2023.07.08 |
Ubuntu Nouveau 비활성화 (NVIDIA 그래픽 드라이버 설치) (0) | 2023.06.22 |
Comments