Closed crect500 closed 1 month ago
The constructor documentation at:
https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService
suggests that one can create a QiskitRuntimeService object with channel="local" to test locally. However, there is an if statement in the source code which raises a ValueError if so.
channel="local"
if
Hi @crect500 can you post the error message? There should be no issues with setting the channel as local.
service = QiskitRuntimeService(channel="local")
The constructor documentation at:
https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService
suggests that one can create a QiskitRuntimeService object with
channel="local"
to test locally. However, there is anif
statement in the source code which raises a ValueError if so.