Hello World — Programming on Quantum Computers Season 1 Ep 3

In this video, you will build your first quantum circuit and learn how to create entanglement between 2 qubits. *The IBM Quantum backend ibmq_16_melbournehas been retired. In order to see the quantum backends you have access to, use the () command. For example, for the Open provider from qiskit import IBMQ () provider = (hub=’ibm-q’, group=’open’, project=’main’) () shows a list of available backends. For example, replacing the line in the video with qcomp = (’ibmq_santiago’) will fix this issue. *As of Qiskit , the initial states are not drawn by default when you draw the circuit. If you are running this version or later, your circuits might look a little different to Abe’s but this is nothing to worry about! If you would like to see the circuits look the same as Abe’s, you need to include initial_state=True into the calls to (), so they become (initial_state=True). You can see abou
Back to Top