web-dev-qa-db-ja.com

Microsoft Windowsターミナルのインストール方法

さて、これはかなり単純な質問であるべきですが、すべての可能性に失敗し、それがロードされたものになっていると思いますインストールする Microsoft Windowsターミナル

Microsoft Windowsターミナル

は、コマンドプロンプト、PowerShell、WSLなどのコマンドラインツールとシェルのユーザー向けの、新しく、モダンで高速、効率的、強力で生産的なターミナルアプリケーションです。その主な機能には、複数のタブ、UnicodeおよびUTF-8文字のサポート、GPUアクセラレーションテキストレンダリングエンジン、カスタムテーマ、スタイル、構成が含まれます。

これは で入手可能なオープンソースプロジェクトですhttps://github.com/Microsoft/terminal

enter image description here

  • choco install Microsoft-windows-terminalでインストールしようとすると、次のようになります。

    ERROR: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict validation.
    
    Windows cannot install package Microsoft.WindowsTerminal_0.11.1121.0_x64__8wekyb3d8bbwe because this package depends on a framework that could not be found. Provide the framework "Microsoft.VCLibs.140.00" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.27810.0, along with this package to install. The frameworks with name "Microsoft.VCLibs.140.00" currently installed are: {Microsoft.VCLibs.140
    Windows cannot install package Microsoft.WindowsTerminal_0.11.1121.0_x64__8wekyb3d8bbwe because this package depends on a framework that could not be found. Provide the framework "Microsoft.VCLibs.140.00" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.27810.0, along with this package to install. The frameworks with name "Microsoft.VCLibs.140.00" currently installed are: {Microsoft.VCLibs.140.00_14.0.26706.0_x64__8wekyb3d8bbwe Microsoft.VCLibs.140.00_14.0.26706.0_x86__8wekyb3d8bbwe}
    

私はすべての検索を使い果たしており、依存しているものがあると確信していますが:

PS > Get-AppxPackage -allusers *Microsoft.VCLibs.140.00* | Select Name, PackageFullName

Name                               PackageFullName
----                               ---------------
Microsoft.VCLibs.140.00.UWPDesktop Microsoft.VCLibs.140.00.UWPDesktop_14.0.26905.0_x64__8wekyb3d8bbwe
Microsoft.VCLibs.140.00            Microsoft.VCLibs.140.00_14.0.26706.0_x64__8wekyb3d8bbwe
Microsoft.VCLibs.140.00            Microsoft.VCLibs.140.00_14.0.26706.0_x86__8wekyb3d8bbwe
Microsoft.VCLibs.140.00.UWPDesktop Microsoft.VCLibs.140.00.UWPDesktop_14.0.27810.0_x64__8wekyb3d8bbwe

では、もう一度、簡単な質問です。MicrosoftWindowsターミナルをインストールする方法は?どうも。

1
xpt

Microsoft Storeから直接インストールすることもできませんでした。 Windows 10 1909では、

Add-AppxPackage Microsoft.WindowsTerminal_0.11.1191.0_8wekyb3d8bbwe.msixbundle

そしてそれは大丈夫インストールしました。

get-appxpackage Microsoft.windowsterminal


Name              : Microsoft.WindowsTerminal
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 0.11.1191.0
PackageFullName   : Microsoft.WindowsTerminal_0.11.1191.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.WindowsTerminal_0.11.1191.0_x64__8wekyb3d8bbwe
IsFramework       : False
PackageFamilyName : Microsoft.WindowsTerminal_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
NonRemovable      : False
Dependencies      : {Microsoft.VCLibs.140.00_14.0.27810.0_x64__8wekyb3d8bbwe,
                    Microsoft.VCLibs.140.00.UWPDesktop_14.0.27810.0_x64__8wekyb3d8bbwe}
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok

デフォルト設定のjsonを取得するAlt-下矢印-設定。

2
js2010

この依存関係をインストールする必要があります:Microsoft.VCLibs.140.00。 「SW_DVD9_NTRL_Win_10_1903_32_64_ARM64_MultiLang_App_Update_X22-01657.ISO」と呼ばれるVLSC ISOイメージからのみ取得できます(Windows 10のバージョンが1903/1909の場合)。グーグルそれ。生きているリンクのあるサイトが検索の上部に表示されます。残念ながら、この種のパッケージはVLSC内でのみ配布されます。

0
farag