PyOxidizer
PyOxidizer copied to clipboard
A modern Python application packaging and distribution tool
### Issue Summary @indygreg I am experiencing difficulties with PyOxidizer while generating an executable for my Python project. Specifically, the process seems to get stuck during text encoding, and ~I...
I'm interested to use pyoxidizer and I have already successfully used `pyoxidizer init-config-file pyapp` on an m1 Mac but honestly the docs start off in parallel with talking about several...
I tried to build a statically linked binary. The build works fine but it's not possible to execute the binary. I did a simple test by adding [this line](https://github.com/kkrampa/PyOxidizer/blob/musl-test/.github/workflows/pyoxidizer.yml#L47) to...
I tried to create a startup example project via `pyoxidizer init-config-file .` and run `pyoxidizer run`, then I got `error[PYOXIDIZER_PYTHON_EXECUTABLE]: adding PythonExecutable to FileManifest, error: adding PythonExecutable to FileManifest` errors....
I tried to build the same project on Windows and Linux, without any success. I tried to build with pyoxidizer from pip and pyoxidizer build from cargo(Linux). I got the...
Is it possible to customize an embedded kernel? e.g. install a package. if yes, should this be done statically before the embedding step or can it also be done dynamically?
Please add to your readme how someone uses this framework to bundle the simplest app possible. The majority of people coming to this github project are looking for this.
```toml # ./pyoxidizer.toml [application] name = "sniff" version = "0.3.0" [[binaries]] name = "sniff" path = "sniff/cli/sniff.py" ``` ```console $ pyoxidizer build error: unable to find PyOxidizer config file at...
There doesn't seem to be any support for Android yet, but I'd need that. I'd be willing to give adding support for it a go, is there a list of...
First of all, congrats on your project, looks promising. However, as some have pointed out, there are a TON of libraries for packaging python projects (none ideal as you point...