Can't get gnomad on jupyter notebook

Hi there,
I use minerva notebook from sinai
I am interested to follow the broad tutorial

I can run the following code on my command line (no jupyter notebook)
Python 3.8.8 (default, Apr 13 2021, 19:58:26)

import hail as hl
import gnomad.resources
import gnomad.sample_qc
import gnomad.utils
from gnomad.sample_qc.ancestry import assign_population_pcs, run_pca_with_relateds

#v3.1 PCA loadings.
gnomad_v3_loadings = (
“gs://gcp-public-data–gnomad/release/3.1/pca/gnomad.v3.1.pca_loadings.ht”
)

#v3.1 ONNX RF model.
gnomad_v3_onnx_rf = (
“gs://gcp-public-data–gnomad/release/3.1/pca/gnomad.v3.1.RF_fit.onnx”
)

#Test dataset to apply projection and genetic ancestry group assignment to.
#This will be the path to your dataset VDS.
vds_to_project = “gs://gnomad/v4.0/raw/exomes/testing/gnomad_v4.0_test.vds”

#v2.1 ONNX RF model.
gnomad_v2_onnx_rf = (
“gs://gcp-public-data–gnomad/release/2.1/pca/gnomad.r2.1.RF_fit.onnx”
)

#v2.1 output path.
gnomad_v2_assignment_path = get_checkpoint_path(
“example_gnomad_v2.1_ancestry_rf.assignment”
)

v3_num_pcs = 16
v2_num_pcs = 6

v3_min_prob = 0.75
v2_min_prob = 0.9

But when I work on jupyter notebook it can’t find gnomad library.
How do I enable gnomad library on minerva jupyter notebook?