You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 28, 2025. It is now read-only.
If you get this error on Linux, please install libxcb-cursor:
32
+
If you get this error on **Linux**, please install libxcb-cursor:
26
33
```
27
34
# qt.qpa.plugin: From 6.5.0, xcb-cursor0 or libxcb-cursor0 is needed to load the Qt xcb platform plugin.
28
35
sudo apt install libxcb-cursor0
29
36
```
30
37
31
-
Run:
32
-
```
33
-
# Linux/MacOS
34
-
python3 seedqreader.py
38
+
To install on **Windows**:
35
39
```
40
+
# create environment to install dependencies
41
+
python -m venv .seedqrenv
36
42
37
-
Run:
38
-
```
39
-
# Windows
40
-
python seedqreader.py
43
+
# activate the environment on the current cmd
44
+
.seedqrenv\Scripts\activate
45
+
46
+
# install python dependencies on this environment
47
+
pip install -r requirements.txt
41
48
```
42
49
43
-
If you get this error on Windows, install `vcredist_x64.exe`[Visual C++ Redistributable Packages for Visual Studio 2013](https://www.microsoft.com/en-US/download/details.aspx?id=40784). Then uninstall and install `pyzbar` lib again:
50
+
If you get this error on **Windows**, install `vcredist_x64.exe`[Visual C++ Redistributable Packages for Visual Studio 2013](https://www.microsoft.com/en-US/download/details.aspx?id=40784). Then uninstall and install `pyzbar` lib again:
44
51
```
45
52
FileNotFoundError: Could not find module 'libiconv.dll' (or one of its dependencies). Try using the full path with constructor syntax.
46
53
pyimod03_ctypes.install.<locals>.PyInstallerImportError: Failed to load dynlib/dll 'libiconv.dll'. Most likely this dynlib/dll was not found when the application was frozen.
47
54
[PYI-5780:ERROR] Failed to execute script 'seedqreader' due to unhandled exception!
48
55
```
49
56
50
-
To build binaries:
57
+
## Run
58
+
59
+
**Linux/MacOS**:
60
+
```
61
+
python3 seedqreader.py
62
+
```
63
+
64
+
**Windows**:
65
+
```
66
+
python seedqreader.py
67
+
```
68
+
69
+
70
+
## Build binaries
71
+
51
72
```
52
73
pip install PyInstaller
53
74
python3 .ci/create-spec.py
54
75
python3 -m PyInstaller seedqreader.spec
55
76
```
56
77
78
+
57
79
Project originally created by https://github.com/pythcoiner
0 commit comments