-
Notifications
You must be signed in to change notification settings - Fork 536
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fpdf not working with .pyw #165
Comments
does it work on python without w? also does the same hold true for https://pypi.org/project/fpdf2/? |
|
So just uninstalled fpdf2 and tried again, its now finding the reference and still seems to be doing the same thing as before with fpdf. will not open under .pyw. Using logger I got this" |
Alright sorry then, I've never worked with that feature before.
…On Tue, Oct 20, 2020, 3:55 PM Bagel94 ***@***.***> wrote:
So just unstilled fpdf2 and tried again, its now finding the reference and
still seems to be doing the same thing as before with fpdf. will not open
under .pyw.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#165 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACECGJERLQFLEFZ4X33R25TSLXTL7ANCNFSM4SYSQVZA>
.
|
Came across an issue where having fpdf as an import will not allow my .pyw file to open outside of an IDE (Pycharm).
Used this to single fpdf out as the one that would not let my file open so that I could get it to run..
try:
from fpdf import FPDF
except:
tk.messagebox.showwarning("Failed to import.")
The text was updated successfully, but these errors were encountered: