红联Linux门户
Linux帮助

Linux安装使用PowerShell

发布时间:2016-08-23 10:07:09来源:topspeedsnail.com作者:斗大的熊猫
微软的PowerShell在前不久开源了,现在,PowerShell不仅可以在Windows上使用,还可以在Linux和Mac OS X上使用。
Linux安装使用PowerShell
 
安装PowerShell
微软为各种平台都提供了安装包,安装非常简单。

Platform

Downloads

How to Install

Windows 10 / Server 2016

.msi

Instructions

Windows 8.1 / Server 2012 R2

.msi

Instructions

Ubuntu 16.04

.deb

Instructions

Ubuntu 14.04

.deb

Instructions

CentOS 7

.rpm

Instructions

OS X 10.11

.pkg

Instructions

Docker

 

Instructions

最新安装包的下载地址:https://github.com/PowerShell/PowerShell/releases
 
我以Ubuntu 16.04为例:
下载deb包:
$ wget https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.9/powershell_6.0.0-alpha.9-1ubuntu1.16.04.1_amd64.deb
安装依赖包:
$ sudo apt-get install libunwind8 libicu55
安装PowerShell:
$ sudo dpkg -i powershell*.deb
 
使用PowerShell
进入powershell环境:
$ powershell
Linux安装使用PowerShell
查看PowerShell使用文档和示例:
https://github.com/PowerShell/PowerShell/tree/master/demos
https://github.com/PowerShell/PowerShell/tree/master/docs
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23546.html