I coded my inline script and successfully imported pytz module,
but when i type the same line

import pytz
it failed, error said: ModuleNotFoundError: No module named 'pytz' i try both
#extra_requirements:
#pytz==2024.1
and
#requirements:
#pytz==2024.1
they don't help at all. I tried to import snowflake connector in my background script also failed
my assumption was that background runnable script won't support those module which required to be downloaded. Or is there any other way that I can import pytz in my python background runnable scripts?