I created a simple python code in my github repo with the following:
import numpy as np
import matplotlib as plt
a=np.arange(1,5).reshape(4,1)
print(a)
print(a.data)
print(a**2)
print(a.dtype)
I integrated my GitHub with Jenkins.
I build a job with freestyle project name it project1.
I put my repo url in the scm and my credential.
I used build trigger as GitHub hook.
In the build step I used shell script
python3 numpy.py
saved it and when trying to build it shows failure
saying no module matplotlib and NumPy something like this.
Why I am not able to build it.
What should I write in the execution shell?