A Powershell module can be installed using the old community-provided PsGet
module from a local directory or a zip from a remote HTTP server:
PSGet\Install-Module -ModulePath "C:\path\to\source\of\MyModule"
PsGet\Install-Module -ModuleUrl "http://path/to/MyModule.zip"
Is it possible to do the same with the PowershellGet
module?
It seems PowershellGet
can only install modules from NuGet repos.
Any suggestion is appreciated.