Windows の PowerShell で Oh My Posh が有効にならない場合、日本語ユーザー名が悪さをしているかも
はじめに
PC が新しくなったので、チュートリアル: Oh My Posh を使用して PowerShell または WSL のカスタム プロンプトをセットアップする を参照しながら Oh My Posh をインストールしていたら、Set-PoshPrompt
の実行に失敗した。
PS C:\> Set-PoshPrompt -Theme paradox
&: The term 'C:/Users/譚牙アア豢倶ク/AppData/Local/oh-my-posh/oh-my-posh.exe' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Invoke-Expression: Cannot bind argument to parameter 'Command' because it is an empty string.
もちろん?、Get-PoshTemes
コマンドレットも失敗する。
PS C:\> Get-PoshThemes
Get-PoshThemes: The term 'Get-PoshThemes' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
回避方法
どうやら、日本語ユーザー名があるせいでパスの解決に失敗している模様。
Oh My Posh の FAQ を見ると解決方法が乗っていた
エンコーディングを UTF-8 にすればよいらしい。
$OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding
この状態で、もう一度 Oh My Posh をインストールすれば、Set-PoshPrompt
やGet-PoshThemes
が実行できるようになる。
おわりに
日本語のユーザー名はまだまだ引っかかるところがありますね。
Author And Source
この問題について(Windows の PowerShell で Oh My Posh が有効にならない場合、日本語ユーザー名が悪さをしているかも), 我々は、より多くの情報をここで見つけました https://qiita.com/karuakun/items/65c280b9e6cfd2de9fda著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .