python-eel / Eel

A little Python library for making simple Electron-like HTML/JS GUI apps
MIT License
6.44k stars 587 forks source link

Issue: NameError: name '__version__' is not defined while running the executable file [W/FIX] #476

Closed ryan-k8 closed 3 years ago

ryan-k8 commented 3 years ago

[FIX]- set the 'version' pyppeteer's init to any value

try:
    __version__ = version(__name__)  #line 43
except Exception:
    pass
__version__="0.2.5"