Verc
Verc

Reputation: 195

How to run a Python project from GitHub to VSCode

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 ?

Upvotes: 0

Views: 1372

Answers (2)

Anger
Anger

Reputation: 101

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.

Upvotes: 1

Henok
Henok

Reputation: 15

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

Upvotes: 0

Related Questions