ubuntu16.04 uses anaconda3 to install labelme

1. First install anaconda3

https://blog.csdn.net/u012243626/article/details/82469174

After the above installation method is installed, using the conda command will prompt that there is no such command. That is because only the environment variable is set, but it does not take effect. Execute the following command:

source ~/.bashrc

2. Install labelme

https://blog.csdn.net/s534435877/article/details/103682296

The following error is prompted when starting after the installation is complete

labelImg
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

Available platform plugins are: eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx, webgl, xcb.

Aborted (core dumped)

The solution is as follows

apt-get install libxcb-xinerama0

 

Guess you like

Origin blog.csdn.net/u013171226/article/details/115013514
Recommended