import numpy as np
from qiskit import QuantumCircuit, ClassicalRegister, QuantumRegister
from qiskit import execute
When trying the above code, I am receiving the following error:
ModuleNotFoundError Traceback (most recent call last) in () 1 import numpy as np ----> 2 from qiskit import QuantumCircuit, ClassicalRegister, QuantumRegister 3 from qiskit import execute
ModuleNotFoundError: No module named 'qiskit'