skip to Main Content

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 1like this

and 2 enter image description here

and warnings like this
enter image description here

and im cannot run the project. Can you help me with this ?

2

Answers


  1. Go through the entire code and install all the imported packages, for example: numpy and others using pip install.

    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search