Pivottablejs did not run in streamlit cloud

Sir, please find the code below. It runs perfectly fine locally, but it does not execute in Streamlit Cloud. The compilation is successful; however, after compilation, it presents an error, which you can observe in the error image. Kindly provide me with the appropriate solution. Thank you in advance for your valuable assistance.

see all in link
https://jspage.streamlit.app/

sir this is my code

import streamlit as st
import streamlit.components.v1 as components
import pandas as pd
from pivottablejs import pivot_ui
mdf = pd.DataFrame({“A”: [“foo”, “foo”, “foo”, “foo”, “foo”,
“bar”, “bar”, “bar”, “bar”],
“G”: [‘ADDA01’, ‘ADDAA2’, ‘AFFAA2’, ‘DFFDD3’, ‘DFFDD3’, ‘FDDFF4’, ‘FFFFF5’, ‘TDDTT6’, ‘RRR7’],
“E”: [2, 4, 5, 5, 6, 6, 8, 9, 9]})
t = pivot_ui(mdf)
with open(t.src) as t:
components.html(t.read(), width=900, height=1000, scrolling=True)

this is requirements.txt file
numpy
pandas
seaborn
openpyxl
pivottablejs

see error