Help me in importing Numpy library in CodeChef IDE

My issue

I am not able to import and hence, use Numpy library.

error shown
ModuleNotFoundError: No module named ‘numpy’

My code

# cook your dish here
import numpy as np
for _ in range(int(input())):
    N = int(input())
    l = list(map(int, input().split()))
    
    lgcd = np.gcd.reduce(l)

Problem Link: STRNG Problem - CodeChef

Hey @aaryan18,

Yes the Numpy library is not installed on our servers. Will add that in a few weeks.

yes and please install “sortedcontainers” as well. Other languages like Java, C++ support it out of the box.

please add pandas too