我正在为 Quantum Teleportation 编写代码,但我不知道如何解决此错误“没有后端符合条件”
这是一个代码:
circuit.measure(2,2)
simulator = Aer.get_backend('gasm_simulator')
result = execute(circuit, backend = simulator, shots = 1024).result()
counts = result.get_counts()
plot_histogram(counts)
有人可以帮我解决这个问题吗?谢谢!