0
import eel

eel.init('web')

eel.expose
def Something():
  return "hhaa tf"

eel.start("index.html")

I am trying to use eel to display a thing and it is giving me the OSError that it cannot find Google Chrome or Chromium. I am running this in Replit which I think is the problem and I need a solution thanks.

2 Answers2

-2
eel.start("index.html", mode="browser")
-3

try this: eel.start("index.html", mode="browser")

00000
  • 1