-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
46 lines (26 loc) · 1.21 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Instructions for installations and use.
Download the repository:
Option 1: use the download link available in the site.
Option 2: use git clone “link”
Create and activate virtual environment
First it’s necessary to create a virtual environment and activate it. Use the next command line:
Python3 -m venv “Virtualenv name”
Activate virtual environment
Source path of virtualenv”/bin/activate
Install the requirements packages:
Change at the folder where you download the files.
cd /path of files/
To install the necessary packages run the next command line:
pip install -r requirements.txt
Run the program.
Use the next command line:
python guiv1.1.py
If everything works fine, it will show the GUI without problem.
Issues solution
In case of this error shows:
“ qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/home/pc/envs/”Virtualenv name”/lib/python3.8/site-packages/cv2/qt/plugins" even though it was found. “
Change to directory: envs/gui_speos/lib/python3.8/site-packages/cv2/qt/
Use the next command line: “cd envs/gui_speos/lib/python3.8/site-packages/cv2/qt/”
And delete the folder "plugins”
For delete the folder plugins use the next command line:
“rm -rf plugins/”