Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mhils/pyinstaller-pyproject-editable
MRE for a PyInstaller Bug
https://github.com/mhils/pyinstaller-pyproject-editable
Last synced: about 1 month ago
JSON representation
MRE for a PyInstaller Bug
- Host: GitHub
- URL: https://github.com/mhils/pyinstaller-pyproject-editable
- Owner: mhils
- Created: 2023-03-27T16:43:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-03-27T16:43:53.000Z (over 1 year ago)
- Last Synced: 2024-05-01T21:08:06.293Z (7 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyInstaller + editable `pyproject.toml` installs
**Working:**
```
$ pip install .
$ pyinstaller --clean --onefile bin/repro.py
$ dist/repro
hello world
```**Crash:**
```
$ pip install -e .
$ pyinstaller --clean --onefile bin/repro.py
$ dist/repro
Traceback (most recent call last):
File "repro.py", line 1, in
ModuleNotFoundError: No module named 'my_module'
[2041] Failed to execute script 'repro' due to unhandled exception!
```