0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Fedora 40にPowerShell(pwsh)をインストールする

Last updated at Posted at 2024-10-06

はじめに

Fedora 40にPowerShell(pwsh)をインストールしました。そのときにメモです。

インストールの流れとしましては、dnfを使用してdotnetをインストールします。

そのあと、dotnetからPowerShellをインストールしました。

dotnetのインストール

こちらはdnfからインストールしました。ここで少しつまったことがありまして、dotnet runtimeのバージョンが8.0をインストールする必要があったことでした。

sudo dnf install dotnet dotnet-runtime-8.0 dotnet-sdk-8.0

~/.bash_profileを編集します。

# dotnet
export DOTNET_ROOT=/usr/lib64/dotnet
export PATH=$PATH:$DOTNET_ROOT
export PATH=$PATH:$DOTNET_ROOT/tools
export PATH=$PATH:$DOTNET_ROOT/tools/sdk

bashにて、which dotnetと入力したときに、dotnetがインストールされているパスが表示されますと成功となります。

PowerShell(pwsh)のインストール

dotnetより、PowerShellをインストールします。

dotnet tool install --global PowerShell

which pwshとして、インストールされているパスが表示されますと成功となります。

PowerShell(pswh)の起動

bashにて以下のコマンドより実行します。

pwsh
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?