Q# 控制台模板 DOTNET 无法在 MAC 上运行
Q# Console Template DOTNET not working on MAC
$ dotnet new console -lang Q# --output Bell
Error: Invalid parameter(s):
-lang Q#
'Q#' is not a valid value for -lang (language).
运行 dotnet new console --help 获取使用信息。
请参阅 https://aka.ms/dotnet-install-templates 了解如何安装其他模板包。
我也试过了运行:
dotnet new -i Microsoft.DotNet.Common.ProjectTemplates.2.x::2.0.0-*
但即使是这个命令也无法添加项目,我不知道如何获得这个模板。
我认为你需要 运行:
dotnet new -i "Microsoft.Quantum.ProjectTemplates::0.2-*"
查看 https://docs.microsoft.com/en-us/quantum/quantum-installconfig?view=qsharp-preview&tabs=tabid-vscode 以获得更完整的说明。
$ dotnet new console -lang Q# --output Bell
Error: Invalid parameter(s):
-lang Q#
'Q#' is not a valid value for -lang (language).
运行 dotnet new console --help 获取使用信息。 请参阅 https://aka.ms/dotnet-install-templates 了解如何安装其他模板包。
我也试过了运行:
dotnet new -i Microsoft.DotNet.Common.ProjectTemplates.2.x::2.0.0-*
但即使是这个命令也无法添加项目,我不知道如何获得这个模板。
我认为你需要 运行:
dotnet new -i "Microsoft.Quantum.ProjectTemplates::0.2-*"
查看 https://docs.microsoft.com/en-us/quantum/quantum-installconfig?view=qsharp-preview&tabs=tabid-vscode 以获得更完整的说明。