LoginSignup
0
1

Ubuntu に Powershell をインストールする方法

Posted at

以下のスクリプトでインストール可能

# apt のリポジトリをアップデート
sudo apt update

# Linux 版 Powershell に必要なライブラリをインストール
sudo apt install -y wget apt-transport-https software-properties-common

# Microsoft のリポジトリを追加し、公開鍵をインポートします。
wget -q "https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb"
sudo dpkg -i packages-microsoft-prod.deb

# Powershell をインストール
sudo apt install -y powershell

# Powershell を起動
pwsh

0
1
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
1