如何在 Linux 上的 powershell core 6.1 中安装模块

如何在 Linux 上的 powershell core 6.1 中安装模块

我想安装powershell-yaml. 通过安装Powershell 库不起作用。Install-Module我的系统缺少该命令。安装模块的便捷方法是什么?

在 manjaro linux 上使用 powershell core 6.1.2。

答案1

如果您对交互式会话没有问题,则运行pwshInstall-Module在 pwsh cli 中运行。您也可以尝试,pwsh -Command {Install-Module -Name xxxxx -Force}但不确定成功率。

相关内容