Docker: enable GUI forwarding from container (Qt/xcb + Open3D)#36
Open
kvnptl wants to merge 1 commit intoNVlabs:masterfrom
Open
Docker: enable GUI forwarding from container (Qt/xcb + Open3D)#36kvnptl wants to merge 1 commit intoNVlabs:masterfrom
kvnptl wants to merge 1 commit intoNVlabs:masterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
cv2.imshow). Addslibsm6(fixes missinglibSM.so.6), pluslibx11-xcb1,libxcb-*,libxext6, etc. Useslibxcb-sync1for Ubuntu 22.04 (notlibxcb-sync0).ENV PATH=$PATH:/opt/conda/envs/my/bin, modernENVform (silences DockerLegacyKeyValueFormatwarning).run_container.sh: setXDG_RUNTIME_DIR+ create/tmp/runtimefor Open3D;QT_X11_NO_MITSHM=1; optionalQT_DEBUG_PLUGINS=0.Why
Without these system libraries, Qt fails to load the
xcbplatform plugin inside the container even withDISPLAYand/tmp/.X11-unixmounted. Open3D may error ifXDG_RUNTIME_DIRis unset.How to verify
xhost +local:rootbash docker/run_container.shcv2.imshowand/or Open3D visualization -> windows should appear on the host.