LukeHan 의 잡다한 기술 블로그

vim 설치 시 Unable to locate package vim 에러 발생하는 경우 본문

OS/HamoniKR

vim 설치 시 Unable to locate package vim 에러 발생하는 경우

LukeHan1128 2024. 7. 15. 20:00
반응형
ubuntu@lukeHan:~$ sudo apt-get install vim
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package vim

 

ubuntu 서버 환경 구성을 위해 vim 설치 시 위와 같이 에러가 발생하였다.

 

 

 

 

sudo apt-get update

 

위와 같이 입력하여 프로그램 업데이트를 진행한다.

 

 

 

 

ubuntu@lukeHan:/etc/apt$ sudo apt-get install vim

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  libpython3.10 libsodium23 vim-common vim-runtime
Suggested packages:
  ctags vim-doc vim-scripts
The following NEW packages will be installed:
  libpython3.10 libsodium23 vim vim-common vim-runtime
0 upgraded, 5 newly installed, 0 to remove and 10 not upgraded.
Need to get 10.6 MB of archives.
After this operation, 44.0 MB of additional disk space will be used.

Do you want to continue? [Y/n] y

 

위와 같이 입력하여 설치를 진행한다.

 

계속 진행 여부 확인 입력이 나타나면 y 를 입력하여 설치를 진행한다.

 

 

 

 

vim

 

위와 같이 입력하여 vim 이 이상 없이 실행되는 것을 확인할 수 있다.

 

 

 

 

 

반응형
Comments