0

安装 posh-git - 见这里https://github.com/dahlbyk/posh-git

如果我刚刚安装了 PsGet 安装然后运行:

Install-Module posh-git

工作正常。

但是,如果我关闭并重新启动 Powershell,那么我会得到:

The term 'Install-Module' is not recognized as the name of a cmdlet, function, script file, or operable program.

当我尝试运行它时。

知道为什么吗?

4

1 回答 1

1

安装模块后,您通常使用 Import-Module 重新加载它,例如:

Import-Module posh-git

也就是说,如果您尝试从该模块执行命令,则更高版本的 PowerShell(V3 及更高版本)将自动加载该模块。这确实假设 PowerShell 可以发现 posh-git 模块中的命令。

于 2015-04-03T04:06:13.397 回答