Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/powershell/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Powershell 找不到依赖包(System.Runtime)_Powershell_Nuget_Magick.net - Fatal编程技术网

Powershell 找不到依赖包(System.Runtime)

Powershell 找不到依赖包(System.Runtime),powershell,nuget,magick.net,Powershell,Nuget,Magick.net,我在理解什么是错的方面有些困难 我正在使用Windows Powershell版本:5.1.18362.628 我希望安装“Magick.NET-Q8-AnyCPU” PS C:\Users\gtamm\Source\Repos> Find-Package System.Runtime Name Version Source Summary ----

我在理解什么是错的方面有些困难

我正在使用Windows Powershell版本:5.1.18362.628

我希望安装“Magick.NET-Q8-AnyCPU”

PS C:\Users\gtamm\Source\Repos> Find-Package System.Runtime

Name                           Version          Source           Summary
----                           -------          ------           -------
System.Runtime                 4.1.2            nuget.org        Provides the fundamental primitives, classes and base classes that define commonly-used value and reference data types, events and event handlers, interfaces, attribute...


PS C:\Users\gtamm\Source\Repos> Install-Package System.Runtime

The package(s) come(s) from a package source that is not marked as trusted.
Are you sure you want to install software from 'nuget.org'?
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "N"): Y

Name                           Version          Source           Summary
----                           -------          ------           -------
Microsoft.NETCore.Platforms    3.1.0            nuget.org        Provides runtime information required to resolve target framework, platform, and runtime specific implementations of .NETCore packages. ...
Microsoft.NETCore.Targets      3.1.0            nuget.org        Provides supporting infrastructure for portable projects: support identifiers that define framework and runtime for support targets and packages that reference the mini...
System.Runtime                 4.1.2            nuget.org        Provides the fundamental primitives, classes and base classes that define commonly-used value and reference data types, events and event handlers, interfaces, attribute...


PS C:\Users\gtamm\Source\Repos>  Install-Package -Scope AllUsers -ProviderName 'NuGet' -Name 'Magick.NET-Q8-AnyCPU'

The package(s) come(s) from a package source that is not marked as trusted.
Are you sure you want to install software from 'nuget.org'?
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "N"): Y
Install-Package : Unable to find dependent package(s) (System.Runtime)
At line:1 char:2
+  Install-Package -Scope AllUsers -ProviderName 'NuGet' -Name 'Magick. ...
+  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (System.Runtime:String) [Install-Package], Exception
    + FullyQualifiedErrorId : UnableToFindDependencyPackage,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage


您在系统上的查找有问题。我的系统的例子

Get-CimInstance -ClassName Win32_OperatingSystem | 
Select-Object -Property Caption, BuildNumber, Version

<#
# Results

Caption                  BuildNumber Version   
-------                  ----------- -------   
Microsoft Windows 10 Pro 18363       10.0.18363
#>

$PSVersionTable
<#
Name                           Value                                                                                                                                               
----                           -----                                                                                                                                               
PSVersion                      5.1.18362.628                                                                                                                                       
PSEdition                      Desktop                                                                                                                                             
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0, 5.0, 5.1.18362.628}                                                                                                            
BuildVersion                   10.0.18362.628                                                                                                                                      
CLRVersion                     4.0.30319.42000                                                                                                                                     
WSManStackVersion              3.0                                                                                                                                                 
PSRemotingProtocolVersion      2.3                                                                                                                                                 
SerializationVersion           1.1.0.1
#>

Find-Package -Name 'System.Runtime' | 
Format-List
<#
# Results

FastPackageReference : $bnVnZXQub3Jn\U3lzdGVtLlJ1bnRpbWU=\NC4zLjE=\
ProviderName         : NuGet
Source               : nuget.org
Status               : Available
SearchKey            : System.Runtime
FullPath             : 
PackageFilename      : System.Runtime.4.3.1.nupkg
FromTrustedSource    : False
Summary              : Provides the fundamental primitives, classes and bas...
#>
…然后安装

 Install-Module -Name 'Magick.NET-Q8-AnyCPU' -Force
我遇到过

这向我表明,当我安装Powershell 7时,NuGet可能会更新

对我来说,解决方案是指定NuGetV2 API,而不是现在默认的v3

if($PSVersionTable.'PSVersion'.Major -eq 5) {
    Install-Package -Name "Magick.NET-Q8-AnyCPU" -Source "https://www.nuget.org/api/v2"
} else {
    Install-Package -ProviderName "NuGet" -Name "Magick.NET-Q8-AnyCPU"
}

你的命令在我这边表现得很好。当您尝试安装“Magick.NET-Q8-AnyCPU”时出错。
 Install-Module -Name 'Magick.NET-Q8-AnyCPU' -Force
if($PSVersionTable.'PSVersion'.Major -eq 5) {
    Install-Package -Name "Magick.NET-Q8-AnyCPU" -Source "https://www.nuget.org/api/v2"
} else {
    Install-Package -ProviderName "NuGet" -Name "Magick.NET-Q8-AnyCPU"
}