mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-26 04:05:49 +03:00
[GH-ISSUE #393] Dependencies/requirements builder #316
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 @SantaLaMuerte on GitHub (May 2, 2023).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/393
Is it possible to parse libs from original file and made a requirements txt file with em , when exe file is building. Thnx for project
@github-actions[bot] commented on GitHub (May 2, 2023):
👋 Hi, just a reminder that if you haven't read the help post yet, give it a read to see if your issue is covered in it and make sure to follow the debugging section.
Also please note, as stated in the README, if your issue is only associated with your application and not auto-py-to-exe itself, please do not create an issue in this repository - instead, comment on the help post, video or create a new discussion.
@brentvollebregt commented on GitHub (May 3, 2023):
Not really - an import in a script doesn't tell you which library it comes from. The import could hint where it comes from, but a package's name on PyPI does not have to match how it is imported in a script.
Also you may have written your own script that has the same name as a package in PyPI - which could then add the incorrect package.
@SantaLaMuerte commented on GitHub (May 3, 2023):
Found that one , maybe can be implemented
https://github.com/bndr/pipreqs
@brentvollebregt commented on GitHub (May 3, 2023):
Sorry, I'm not sure why something like this is needed in auto-py-to-exe?
Also looking at the source of that library - it appears that it will set the version of a library to the latest in PyPI. No discredit to the authors, but this could cause an incorrect version of a library to be used. This incorrect versioning would not work with this tool as if the script doesn't run before packaging, it certainly won't run as an exe.