I would like to run this project from Github to VSCode, I have cloned the repository, installed Python from the Microsoft app store, but I still get some error like this 1
and im cannot run the project. Can you help me with this ?
I would like to run this project from Github to VSCode, I have cloned the repository, installed Python from the Microsoft app store, but I still get some error like this 1
and im cannot run the project. Can you help me with this ?
2
Answers
Go through the entire code and install all the imported packages, for example:
numpy
and others usingpip install
.The project you have installed seems to use modules.
After reading the above, I recommend you install all imported modules
EX:
You would input
pip install numpy
in order to install the module.