Bug 1631055
| Summary: | blueman uses env python, not system python | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Kale Kundert <kale> |
| Component: | blueman | Assignee: | Artur Frenszek-Iwicki <fedora> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 28 | CC: | fedora, nushio, walter.pete |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | blueman-2.1-0.14.alpha3.fc29 blueman-2.1-0.11.alpha3.fc28 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2019-01-05 02:30:59 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
blueman-2.1-0.14.alpha3.fc29 has been submitted as an update to Fedora 29. https://bodhi.fedoraproject.org/updates/FEDORA-2018-88674ec2d2 blueman-2.1-0.11.alpha3.fc28 has been submitted as an update to Fedora 28. https://bodhi.fedoraproject.org/updates/FEDORA-2018-442e242808 blueman-2.1-0.11.alpha3.fc28 has been pushed to the Fedora 28 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2018-442e242808 blueman-2.1-0.14.alpha3.fc29 has been pushed to the Fedora 29 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2018-88674ec2d2 blueman-2.1-0.14.alpha3.fc29 has been pushed to the Fedora 29 stable repository. If problems still persist, please make note of it in this bug report. blueman-2.1-0.11.alpha3.fc28 has been pushed to the Fedora 28 stable repository. If problems still persist, please make note of it in this bug report. |
User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.11.1 Chrome/65.0.3325.230 Safari/537.36 Build Identifier: After `dnf install blueman`, blueman is installed into the system python: `/usr/bin/python3`. However, the shebang lines in the installed executables read `#!/usr/bin/env python3`. If the first python installation on `$PATH` is not `/usr/bin/python3` (e.g. if you've installed your own python), blueman will fail to launch with the following error: Traceback (most recent call last): File "/usr/bin/blueman-manager", line 19, in <module> from blueman.main.Manager import Blueman ModuleNotFoundError: No module named 'blueman' The solution is to change the shebang lines to `#!/usr/bin/python3`, so that blueman works regardless of the user's $PATH. Reproducible: Always