7 questions
0
votes
0
answers
15
views
Add directory to File Manifest using a relative path
How do you add directory to File Manifest with a relative path?
https://pyoxidizer.readthedocs.io
def make_install(exe):
files = FileManifest()
files.add_python_resource(".", exe)
...
0
votes
0
answers
47
views
Add a file with pyoxidizer and use it in the script
I want to use Pyoxidizer to create a .exe for my program.
In my script I use a saved torch model (torch.load("path")).
I want to pack this file in the .exe so that it can actually use it.
I ...
2
votes
1
answer
598
views
HAs anyone used pyoxidizer to create .exe file
I have created the .toml file called pyoxidizer.toml in the same folder where the script are placed.
but when I run on the command file in the same folder where all the .py files (and the .toml file) ...
0
votes
0
answers
310
views
Options for Bundling a Python web server in Electron?
What are some options for packaging a python web server (i.e. flask, tornado, quart, sanic, etc.) that uses numpy inside an electron application?
I took a look at PyOxidizer, but could not find any ...
0
votes
0
answers
416
views
PyOxidizer: "Must construct a QApplication before a QWidget"
I'm trying to build and distribute a python app with PyOxidizer but i cannot seem to get it to work. I tried other tools apart from PyOxidizer (like pyinstaller and pynsist) but to no avail, those are ...
4
votes
1
answer
910
views
extension module cannot be loaded from memory but memory loading required
I want to pack my application using pyoxidizer. I need to add PySide2 to my package.
policy.resources_location = "in-memory"
policy.resources_location_fallback = "filesystem-relative:...
1
vote
1
answer
730
views
Alternative to using __file__ find the binary folder in my python package
I published a library to PyPI ('nmrsim') that has the following structure (edited to only include the relevant files/folders):
nmrsim
├── nmrsim
│ ├── __init__.py
│ ├── bin
│ │ ├── T1.npz
│ ...