Skip to content

Commit

Permalink
Add info about gui
Browse files Browse the repository at this point in the history
  • Loading branch information
fireattack committed May 9, 2023
1 parent 5e219aa commit afec54f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion chapter_converter/gui.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
from gooey import Gooey
try:
from gooey import Gooey
except ImportError:
print("Please install `gooey` manually to use the GUI:")
print("`pip install attrdict3`, then `pip install gooey` (in two transactions)")
exit(1)

from .chapter_converter import main

Expand Down

0 comments on commit afec54f

Please sign in to comment.