无法创建 Q# 项目
Cannot create Q# projects
我是量子计算的新手,我一直在尝试按照 https://docs.microsoft.com/en-us/azure/quantum/install-command-line-qdk?tabs=tabid-vscode to dive into this field, but I've run into a problem. Every time I'm trying to create a new Q# application project, I get the following error message
上的说明进行操作
The project file cannot be opened. Unable to find package Microsoft.Quantum.Sdk. No packages exist with this id in source(s): Microsoft Visual Studio Offline Packages C:\Program Files\dotnet\sdk.0.202\Sdks\Microsoft.Quantum.Sdk\Sdk not found. Check that a recent enough .NET SDK is installed and/or increase the version specified in global.json.
而且我自己也找不到那个包裹。
我尝试安装 Microsoft.Quantum.Development.Kit-0.16.2104.138035 几次,包括 .NET 3.1.408 和 5.0.202。我在 Windows 10.
上使用 VS 2019 16.9.4 社区版
看起来 nuget.org 未在您的计算机中列为有效包源,因此 dotnet 无法在线找到 QDK 包。
尝试运行这个命令:
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
然后再次尝试构建您的 Q# 项目。
我不清楚为什么 nuget.org
没有列为来源;安装 .NET Core 时应该默认包含它。
我是量子计算的新手,我一直在尝试按照 https://docs.microsoft.com/en-us/azure/quantum/install-command-line-qdk?tabs=tabid-vscode to dive into this field, but I've run into a problem. Every time I'm trying to create a new Q# application project, I get the following error message
上的说明进行操作The project file cannot be opened. Unable to find package Microsoft.Quantum.Sdk. No packages exist with this id in source(s): Microsoft Visual Studio Offline Packages C:\Program Files\dotnet\sdk.0.202\Sdks\Microsoft.Quantum.Sdk\Sdk not found. Check that a recent enough .NET SDK is installed and/or increase the version specified in global.json.
而且我自己也找不到那个包裹。
我尝试安装 Microsoft.Quantum.Development.Kit-0.16.2104.138035 几次,包括 .NET 3.1.408 和 5.0.202。我在 Windows 10.
上使用 VS 2019 16.9.4 社区版看起来 nuget.org 未在您的计算机中列为有效包源,因此 dotnet 无法在线找到 QDK 包。
尝试运行这个命令:
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
然后再次尝试构建您的 Q# 项目。
我不清楚为什么 nuget.org
没有列为来源;安装 .NET Core 时应该默认包含它。