and im cannot run the project. Can you help me with this ?
CodePudding user response:
The project you have installed seems to use modules.
After reading the above, I recommend you install all imported modules
EX:
import numpy as np
arr = np.array([1, 2, 3, 4, 5])
print(arr)
print(type(arr))
You would input pip install numpy
in order to install the module.
CodePudding user response:
Go through the entire code and install all the imported packages, for example: numpy
and others using pip install
.