mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-26 12:15:50 +03:00
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @BMarquiz on GitHub (Oct 19, 2019).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/75
ptyhon/pyinstaller : eel to exe tells me: ( filenotfounderror: [errno 2] no such file or directory: 'eel' ) in auto-py-to-exe-master ,or[ permission is denied in cmd ]>>>win32bit python3.7 #52
my command line : pyinstaller -y -F -i "C:/Users/Broo/Desktop/Barq/barq.ico" --add-data "C:/Users/Broo/Desktop/Barq/web";"web/" --add-data "C:/Users/Broo/Desktop/Barq/web/order.html";"." --add-data "C:/Users/Broo/Desktop/Barq/web/page1.html";"." --add-data "C:/Users/Broo/Desktop/Barq/web/page2.html";"." -m eel --hidden-import win32com "C:/Users/Broo/Desktop/Barq/pass.py"
@BMarquiz commented on GitHub (Oct 19, 2019):
@brentvollebregt my project designed to work with internet connection.please tell me what to do.
@brentvollebregt commented on GitHub (Oct 20, 2019):
Where does this error appear? What actions do you perform to get this error?
@BMarquiz commented on GitHub (Oct 21, 2019):
@brentvollebregt when I tried to convert my python project to exe with eel libarary in auto-py-to-exe-master during the Process, this error came up.
@BMarquiz commented on GitHub (Oct 21, 2019):
@brentvollebregt Thank you I've tried to start my command with python -m eel .....
and it's worked correctly.
@brentvollebregt commented on GitHub (Oct 21, 2019):
Why is the value supplied to
-meel?-m is used to "Add manifest FILE or XML to the exe"; this should be a file path. PyInstaller is looking for a file named
eel(as that is what you have told it to look for) but it doesn't exist.The -m option can be found in the documentation.
@brentvollebregt commented on GitHub (Oct 23, 2019):
I looked at your recent activity and noticed you opened an issue at samuelhwilliams/Eel#202, is this now solved?
@brentvollebregt commented on GitHub (Oct 30, 2019):
@BMarquiz have you solved your issue?
@brentvollebregt commented on GitHub (Feb 7, 2020):
Closing due to no response from @BMarquiz