Add the posibility to freeze/pack apps from the terminal (like pyinstaller does: pyinstaller main.py)
See original GitHub issuePyinstaller, pip and many more modules have .exe files in the Scripts folder.
When called from the terminal they can accept arguments and do stuff (ex: pip install module)
It would be nicer if pyvan can have something like this pyvan main.py
and this pyvan --no-console main.py
instead of creating a setup file then run it.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Using Spec Files - PyInstaller
Creates a folder build in the same folder as the script if it does not exist. ... Specify a command-line option to pass...
Read more >Using PyInstaller to Easily Distribute Python Applications
In this step-by-step tutorial, you'll learn how to use PyInstaller to turn your Python application into an executable with no dependencies or installation ......
Read more >Freezing Your Code - The Hitchhiker's Guide to Python
“Freezing” your code is creating a single-file executable file to distribute to end-users, that contains all of your application code as well as...
Read more >How to include PyInstaller inside a PyInstaller bundle?
So it seems like PyInstaller does not bundle itself inside the application. There is an issue on PyInstaller github page, but it does...
Read more >PyInstaller Documentation - Read the Docs
pyinstaller is the main command to build a bundled application. ... You distribute the bundle as a folder or file to other people,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ClimenteA the icon to exe is more tricky, but I found the following which you might be able to exploit, i.e. using shortcuts you can set icons: https://pbpython.com/windows-shortcut.html. I am working on one more PR feature for pyvan that I really need for my project, after I finish and I have some time left I might have some time to create a CLI for pyvan.
@ClimenteA Ok the PR is was working on is done see #18, it was a bit more involved than I originally anticipated. But I think overall it would be a great improvement for pyvan.