Issue with Gradio Launch using theme='gradio/seafoam'

I’m attempting to launch Gradio with a specific theme. However, sometimes when I execute the script, it appears to hang—no logs are displayed in the console, and the script doesn’t complete its execution. Interestingly, this issue isn’t consistent; at times, Gradio launches instantly.

Here’s the code snippet I’m using:

import gradio as gr

with gr.Blocks(theme='gradio/seafoam') as demo:
    title = gr.Markdown("# Test")

demo.launch()

I am using the latest gradio-3.44.2 version.

Can anyone provide insight into why this might be happening?