일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Gradient Tree Boosting
- Machine Learning
- Back-propagation
- lime
- Gradient Boosting Machine
- data science
- deep learning
- Explainable AI
- XGBoost
Archives
- Today
- Total
Kicarussays
VS code에서 git 설치가 안 될 때 (E: Package 'git' has no installation candidate) 본문
Linux
VS code에서 git 설치가 안 될 때 (E: Package 'git' has no installation candidate)
Kicarus 2022. 3. 1. 03:21VS code 에서 git을 통해 저장소를 불러오려고 하는데, git이 설치되어 있지 않은 도커 컨테이너를 사용하는 경우 터미널에서 새로 설치를 해주어야 합니다.
그런데 아래와 같이 설치를 하려고 보니
apt-get install git
이와 같은 에러메시지를 출력하는 경우가 있습니다.
이런 경우에는 아래와 같은 명령어를 실행합니다. (sudo를 붙여주어야 할 수도 있습니다.)
rm -vf /var/lib/apt/lists/*
apt-get update
그리고 나서 다시 git을 설치해주면 잘 됩니다.
'Linux' 카테고리의 다른 글
Pylance not working in my vscode (Semantic highlighting) (0) | 2024.02.21 |
---|---|
Ubuntu 서버 시간 동기화 및 한국 시간 설정 (0) | 2022.08.07 |
(Linux)아나콘다 오류 해결: CommandNotFoundError: Your shell has not been properly configured to use 'conda activate' (1) | 2020.08.11 |
리눅스(Ubuntu 18.04)에서 아나콘다 설치하기(Feat. TensorFlow, Gurobi) (0) | 2020.07.31 |
리눅스(Ubuntu 18.04) 시작하기 (0) | 2020.07.31 |
Comments