쏘ing
윈도우에서 vim 사용하기 본문
윈도우에서 vi를 사용하려고 하는데
The term 'vim' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
라는 오류가 났다.

1. choco 다운
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
choco는 apt, yum 처럼 윈도우에서 설치 가능하게 해주는 도구
2. vim 다운
choco install -y vim
choco install -y vim-console
그냥 vim은 GUI 모드
Alias를 설정해야 vi로 킬 수 있다.
New-Alias vi vim
잘 되는 걸 확인할 수 있다.


'졸업작품' 카테고리의 다른 글
[Ubuntu]원격 접속 네트워크, IP 설정 (0) | 2022.02.07 |
---|
Comments