Cannot launch qreator
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Qreator |
New
|
Undecided
|
Unassigned |
Bug Description
Linux Mint 19.3 (Ubuntu 18.04)
qreator 16.06.1-2
I cannot launch qreator. I have found like similar bug was already fixed (#1771122). Anyway, this is what I see:
```
$ qreator
/usr/share/
from gi.repository import GObject, Gtk # pylint: disable=E0611
Traceback (most recent call last):
File "/usr/bin/qreator", line 45, in <module>
import qreator
File "/usr/share/
from qreator import QreatorWindow
File "/usr/share/
from QRCode import QRCode
File "/usr/share/
import Image
ImportError: No module named Image
```
I installed qreator with "apt install qreator"
```
$ python -V
Python 2.7.17
$ python3 -V
Python 3.6.9
```
Same here. In my case with
$ apt install qreator
(...)
$ python -V
Python 2.7.17
$ python3 -V
Python 3.6.9
$ qreator --version
qreator 16.06.1
I've been able to fix this error, and run qreator, by
--- /usr/share/ qreator/ qreator/ QRCode. py~ 2016-06-13 21:11:25.000000000 +0200 qreator/ qreator/ QRCode. py 2022-06-13 21:21:25.000000000 +0200
+++ /usr/share/
@@ -23,2 +23,2 @@
-import Image
-import ImageOps
+from PIL import Image
+from PIL import ImageOps