windows:: install terminal 윈도우용 터미널 설치

 

https://github.com/microsoft/terminal

 

GitHub - microsoft/terminal: The new Windows Terminal and the original Windows console host, all in the same place!

The new Windows Terminal and the original Windows console host, all in the same place! - microsoft/terminal

github.com

 

 

 

 

방법1) 터미널을 통해서 설치

winget install --id Microsoft.WindowsTerminal -e
choco install microsoft-windows-terminal

choco upgrade microsoft-windows-terminal

 

 

 

 

 

방법2) 깃허브 최신 릴리즈를 통한 설치

https://github.com/microsoft/terminal/releases/latest

 

Release Windows Terminal v1.20.11381.0 · microsoft/terminal

Sorry for the late servicing release, folks! This has been rolling out through the various channels for a while now. Bug Fixes We've resolved a crash that occurred if you closed a pane too soon af...

github.com

 

# GitHub API를 사용하여 최신 릴리스 정보 가져오기
$latestRelease = Invoke-RestMethod -Uri "https://api.github.com/repos/microsoft/terminal/releases/latest"

# 최신 .msixbundle 파일의 다운로드 URL 찾기
$asset = $latestRelease.assets | Where-Object { $_.name -like "Microsoft.WindowsTerminal_*.msixbundle" }
$downloadUrl = $asset.browser_download_url

# 최신 버전 번호 가져오기
$version = $latestRelease.tag_name

# 파일 다운로드
$output = "$env:USERPROFILE\Downloads\Microsoft.WindowsTerminal_$version.msixbundle"
Invoke-WebRequest -Uri $downloadUrl -OutFile $output

Write-Output "다운로드 완료: $output"

# 다운로드된 파일 설치
Add-AppxPackage -Path $output


# option
Add-AppxPackage -RegisterByFamilyName -MainPackage -Path $output

 

 

 

 

 

 


참고

 

https://thekkom.tistory.com/160

 

windows:: install powershell & update version in cli

PowerShell의 기본설치 버전은 5.x 버전입니다.최근 PowerShell 7.x 버전을 Github나 MS Store에서 설치 할 수 있는데, 이를 CLI에서 설치하는 방법을 설명합니다.  PowerShell command - CLI 활용방법iex "& { $(irm http

thekkom.tistory.com

 

 

 

 

 

_

 

 

 
반응형