I'm trying to run a repeat until success circuit on hardware by following instructions from qiskit tutorials. Here is the code:
from qiskit_ibm_provider import IBMProvider, least_busy
provider = IBMProvider()
hub = "\<hub\>"
group = "\<group\>"
project = "\<project\>"
hgp = f"{hub}/{group}/{project}"
backend_name = "\<backend name\>"
backend = provider.get_backend(backend_name, instance=hgp)
print(f"Using {backend.name}")
The error it shows is : QiskitBackendNotFoundError: 'No backend matches the criteria' The line backend = provider.get_backend(backend_name, instance=hgp) is showing this error.
I also tried replacing "<backend name>" qith the name of a backend , but still the same error.