Eel icon indicating copy to clipboard operation
Eel copied to clipboard

My eel application blocking the chrome running while is run.

Open AndreyMayantsev opened this issue 1 year ago • 1 comments

My eel application blocking the chrome running while is run.

AndreyMayantsev avatar Feb 29 '24 07:02 AndreyMayantsev

I was able to work around it by creating a separate user profile on the command line. (Sorry for the translated text.)

user_data_dir = os.path.join(os.getcwd(), "chrome_user_data")

eel_kwargs = dict(
    mode="chrome",
    host="localhost",
    port=8888,
    size=(1000, 800),
    cmdline_args=[
        f"--user-data-dir={user_data_dir}",
    ],
    block=False,
)

eel.start(page, **eel_kwargs)

grizn1 avatar Jun 09 '24 13:06 grizn1

Thank you

AndreyMayantsev avatar Aug 07 '24 07:08 AndreyMayantsev