python 在Ubuntu中安装Quantum开发工具包(QDK),不使用conda

lmyy7pcs  于 2022-12-17  发布在  Python
关注(0)|答案(1)|浏览(117)

我打算在Ubuntu 22.04LTS中使用QDK。我有一个virtualenv,但没有conda。我在我的venv中安装了qsharp,带有

$ pip3 install qsharp

但后来

$ python -c "import qsharp"
IQ# is not installed.
Please follow the instructions at https://aka.ms/qdk-install/python.
Traceback (most recent call last):

提供的链接将我带到https://learn.microsoft.com/en-us/azure/quantum/install-overview-qdk?tabs=tabid-vscode%2Ctabid-conda。正确的部分是这个,其中说明我可以使用conda为Juptyer Notebooks环境安装必要的组件。
我知道这可能是最简单的方法,但是我能安装一个没有conda的QDK预编译包吗?

相关

  1. https://github.com/microsoft/qsharp-runtime
  2. https://github.com/microsoft/qsharp-compiler
  3. https://github.com/microsoft/iqsharp/issues/102
  4. Jupyter Notebook not finding IQSharp
  5. https://learn.microsoft.com/en-us/azure/quantum/overview-what-is-qsharp-and-qdk
jk9hmnmh

jk9hmnmh1#

如您提供的link所示,如果您不使用conda(通过安装microsoft包完成),则需要手动IQ#
所以你得赶紧跑

dotnet tool install -g Microsoft.Quantum.IQSharp
dotnet iqsharp install

dotnet可在此处下载from here

相关问题