글을 찾아보는데 대부분이 Xwin 시절의 내용이라

죄다 X로 돌리는건데.. wayland 쓰는 환경이라 안되서 이래저래 멘붕중

>>> cv2.imshow("tt",img)
qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in "/usr/local/lib/python3.12/site-packages/cv2/qt/plugins"
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

Available platform plugins are: xcb.

 

 

opencv headless 를 설치하면 된다는데

$ pip install opencv-python-headless

[링크 : https://shuka.tistory.com/62]

 

막상해보면 not implemented 라고 나오면서 실행이 안될뿐이고 (머.. xcb 에러를 안 뱉으니 된다고 해야하나?)

>>> cv2.imshow("tt",img)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
cv2.error: OpenCV(4.9.0) /io/opencv/modules/highgui/src/window.cpp:1272: error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script in function 'cvShowImage'

 

 

$ env | grep -i way
XDG_SESSION_TYPE=wayland
XAUTHORITY=/run/user/1000/.mutter-Xwaylandauth.V6LHN2
WAYLAND_DISPLAY=wayland-0

$ env | grep -i xdg
XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg
XDG_MENU_PREFIX=gnome-
XDG_SESSION_DESKTOP=ubuntu
XDG_SESSION_TYPE=wayland
XDG_CURRENT_DESKTOP=ubuntu:GNOME
XDG_SESSION_CLASS=user
XDG_RUNTIME_DIR=/run/user/1000
XDG_DATA_DIRS=/usr/share/ubuntu:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop

 

docker run -e XDG_RUNTIME_DIR=/tmp \
           -e WAYLAND_DISPLAY=$WAYLAND_DISPLAY \
           -v $XDG_RUNTIME_DIR/$WAYLAND_DISPLAY:/tmp/$WAYLAND_DISPLAY  \
           --user=$(id -u):$(id -g) \
           imagename waylandapplication

[링크 : https://github.com/mviereck/x11docker/wiki/How-to-provide-Wayland-socket-to-docker-container]

'프로그램 사용 > docker' 카테고리의 다른 글

docker permission denied  (0) 2024.05.08
docker start / stop  (0) 2024.05.08
docker attach / detach  (0) 2024.05.08
docker 이미지 이름 주기  (0) 2024.05.08
docker 이미지 만들기  (0) 2024.05.08
Posted by 구차니
Programming/vue.js2024. 5. 9. 10:21

created가 이름부터 당연하지만(?) mounted 보다 우선적으로 작동하고

mounted는 ui에 연결되는 변수에 대해서 초기화 하는 쪽

 

[링크 : https://ko.vuejs.org/guide/essentials/lifecycle]

    [링크 : https://webruden.tistory.com/926]

[링크 : https://aomee0880.tistory.com/185]

 

computed는 저장된 결과를 반환

method는 렌더링 시 마다 함수 실행

이라는데 무슨 뜻인지.. 종속된 값이 먼지 부터 찾아 봐야 할 듯.

[링크 : https://sunny921.github.io/posts/vuejs-computed-method/]

 

computed는 값이 변하는 이벤트가 발생하지 않으면 처리 조차 하지 않고 기존 값을 리턴(캐싱) 한다.

computed는 예제의 message의 값이 변했을 경우만 다시 렌더링 한다.

[링크 : https://kbcoding.tistory.com/47]

 

'Programming > vue.js' 카테고리의 다른 글

vue.js node.js 메모리 누수?  (0) 2024.04.22
vue webpack  (0) 2024.04.19
vue import "@"  (0) 2024.04.19
vue webpack ckeditor  (0) 2024.04.19
vue3 ckeditor5 document editor 추가하기  (0) 2024.04.18
Posted by 구차니

집에서 도커 깔고 해보려는데 안된다?

그런데 한번 포맷을 했었나.. 도커 깔려있는줄 알았는데...

$ docker run -it python
docker: permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/create": dial unix /var/run/docker.sock: connect: permission denied.
See 'docker run --help'.

 

아무튼 아래의 두개 명령을 통해 리부팅 없이 사용가능하다.

$ sudo usermod -aG docker $USER
$ newgrp docker

[링크 : https://yoo-young.tistory.com/102]

[링크 : https://wscode.tistory.com/112]

'프로그램 사용 > docker' 카테고리의 다른 글

docker python cv2.imshow xcb  (0) 2024.05.09
docker start / stop  (0) 2024.05.08
docker attach / detach  (0) 2024.05.08
docker 이미지 이름 주기  (0) 2024.05.08
docker 이미지 만들기  (0) 2024.05.08
Posted by 구차니

docker start

docker stop

docker ps

가 전부

docker container  하위의 명령이고 alias로 지정되어 있었다니.. 그걸 이제 알게 되네 -_-

 

[링크 : https://docs.docker.com/reference/cli/docker/container/stop/]

 

[링크 : https://docs.docker.com/reference/cli/docker/container/start/]

 

docker container ls

alias - docker ps

[링크 : https://docs.docker.com/reference/cli/docker/container/ls/]

'프로그램 사용 > docker' 카테고리의 다른 글

docker python cv2.imshow xcb  (0) 2024.05.09
docker permission denied  (0) 2024.05.08
docker attach / detach  (0) 2024.05.08
docker 이미지 이름 주기  (0) 2024.05.08
docker 이미지 만들기  (0) 2024.05.08
Posted by 구차니

오래되서 예전에 했던것 같은데 기억이 가물가물..

 

docker 에서 떼어내고 싶을때

minicom ctrl - q - a 누르는 느낌이라고 해야하나..

# docker attach 8cb38d0aa991
root@8cb38d0aa991:/# 
root@8cb38d0aa991:/# read escape sequence

ctrl - p - q

 

붙일때는 docker attach

docker attach 8c
root@8cb38d0aa991:/# 

[링크 : https://bio-info.tistory.com/137]

 

정상적인 붙이는 방법인진 모르겠지만

run -i(interactive)로 해도 붙긴한다.

# docker run -i 8c

'프로그램 사용 > docker' 카테고리의 다른 글

docker permission denied  (0) 2024.05.08
docker start / stop  (0) 2024.05.08
docker 이미지 이름 주기  (0) 2024.05.08
docker 이미지 만들기  (0) 2024.05.08
도커 cpu 갯수 제한  (0) 2024.03.22
Posted by 구차니

docker image tag 라는 명령으로 docker image ls 로 출력되는, 저장소와 태그를 지정해 줄 수 있다.

# docker image ls
REPOSITORY   TAG       IMAGE ID       CREATED         SIZE
<none>       <none>    2dda03d51aa0   8 seconds ago   1.47GB
python       latest    d3fe50f3ed7f   4 weeks ago     1.02GB

# docker image tag 2dda03d51aa0 test_py:custom

# docker image ls
REPOSITORY   TAG       IMAGE ID       CREATED              SIZE
test_py      custom    2dda03d51aa0   About a minute ago   1.47GB
python       latest    d3fe50f3ed7f   4 weeks ago          1.02GB

 

$ docker image tag REPOSITORY:TAG

[링크 : https://miiingo.tistory.com/332]

[링크 : https://velog.io/@pinion7/도커-이미지-생성해보기-feat.-Dockerfile]

'프로그램 사용 > docker' 카테고리의 다른 글

docker start / stop  (0) 2024.05.08
docker attach / detach  (0) 2024.05.08
docker 이미지 만들기  (0) 2024.05.08
도커 cpu 갯수 제한  (0) 2024.03.22
docker snap 버전 문제  (0) 2022.10.12
Posted by 구차니

FROM은 원하는 기반이 될 이미지

RUN은 이미지를 받고 나서 실행하여 이미지에 추가될 명령어들

$ cat Dockerfile
FROM python

RUN apt-get update
RUN apt-get install -y libgl1-mesa-glx libglib2.0-0
RUN pip install opencv-python

CMD ["bash"]

 

먼가.. 요즘 언어들 빌드하는 느낌?

$ docker build .

[링크 : https://ok-lab.tistory.com/113]

 

Dockerfile 문법이 간단하긴 하긴 그게 배우기 싫어서, 직접 만드는방법은 없나 찾아보는 중

 

컨테이터에서 image로 변환하기

[링크 : https://www.dataset.com/blog/create-docker-image/]

[링크 : https://docs.docker.com/reference/cli/docker/container/create/]

 

 

+

집에서 해보려니 안된다. 버전이 올라가면서 docker build 가 deprecated 된거 같은데..

그걸 떠나서 왜 FROM 이 안 먹지?

$ docker --version
Docker version 24.0.5, build 24.0.5-0ubuntu1~22.04.1

$ docker build .
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
            Install the buildx component to build images with BuildKit:
            https://docs.docker.com/go/buildx/

Sending build context to Docker daemon  2.048kB
Error response from daemon: dockerfile parse error on line 1: unknown instruction: FROM python/latest

 

리눅스에서 vi로 생성했더니 인코딩 문제가 있는  듯.

vscode로 보니 공백이 이상하게 인식된다.

이상한 공백을 복사해서 진짜 공백으로 치환하니 잘 된다.

'프로그램 사용 > docker' 카테고리의 다른 글

docker attach / detach  (0) 2024.05.08
docker 이미지 이름 주기  (0) 2024.05.08
도커 cpu 갯수 제한  (0) 2024.03.22
docker snap 버전 문제  (0) 2022.10.12
Dockerfile... 2?  (0) 2019.07.15
Posted by 구차니

python 실행하기 위한 명령어 줄, 물론 pip 로 패키지도 없어서 그냥 깡통 python 상태

$ docker run --rm -it python python

[링크 : https://seorenn.github.io/note/docker-development-environment.html]

 

docker 로 장치연결해주기

docker run -ti -v /tmp/.X11-unix/:/tmp/.X11-unix --env QT_X11_NO_MITSHM=1 --device=/dev/video0:/dev/video0 -e DISPLAY=$DISPLAY --name test pytorch/pytorch:1.12.1-cuda11.3-cudnn8-devel /bin/bash

[링크 : https://shuka.tistory.com/68]

[링크 : https://blog.naver.com/cheeryun/222383212241]

 

$ docker run --rm -it python bash
# pip install opencv-python

[링크 : https://pypi.org/project/opencv-python/]

 

아래는 테스트 필요 + docker 내에서 해야하나 찾아보는 중

$ sudo apt install libgl1-mesa-glx libglib2.0-0

[링크 : https://yuevelyne.tistory.com/entry/OpenCV-ImportError-libGLso1-cannot-open-shared-object-file-No-such-file-or-directory]

 

wayland 예제 검색.. 

$ docker run -e XDG_RUNTIME_DIR=/tmp \
           -e WAYLAND_DISPLAY=$WAYLAND_DISPLAY \
           -v $XDG_RUNTIME_DIR/$WAYLAND_DISPLAY:/tmp/$WAYLAND_DISPLAY  \
           --user=$(id -u):$(id -g) \
           imagename waylandapplication


[링크 : https://unix.stackexchange.com/questions/330366/]

 

ubuntu 22.04 인데 안된다. ㅠㅠ

Qt 쪽 변수를 넘겨줘야 하나?

>>> cv2.imshow("test",a)
qt.qpa.xcb: could not connect to display 
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/usr/local/lib/python3.12/site-packages/cv2/qt/plugins" 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: xcb.

Aborted (core dumped)

 

패키지 깐다고 해결되면 행복은 하겠는데...

pip install PyQt5

[링크 : https://csm-kr.tistory.com/114]

'Programming > python(파이썬)' 카테고리의 다른 글

python soundcard 라이브러리  (0) 2024.05.21
python 사운드 장치  (0) 2024.05.10
python thread event  (0) 2024.03.05
cv2.ximgproc 없을 경우  (0) 2024.02.28
cv2.stereoBM + WLS  (0) 2024.02.28
Posted by 구차니

tinyCAD 라는 기본 플러그 인을 이용해서 tr이라던가 몇가지 명령을 흉내낼수 있다.

단위도 m 에서 mm로 바꾸고, 온갖 기능들을 이용해서 어떻게 그려는 내는걸 보면

해당 채널을 열심히 파봐야 할 듯.

 

[링크 : https://youtu.be/_9YprYt2lRU?si=pSm49ANnJotFnN0s]

 

+

객체를 선택후 edit mode로 전환

 

객체를 우클릭하면 TinyCAD 라고 뜬다.

6가지를 활성화 해야 기능을 쓸 수 있게 된다고 한다.

'프로그램 사용 > Blender' 카테고리의 다른 글

blender img to 3d to 2d to 3d  (0) 2024.08.02
blender 수치로 변경  (0) 2024.07.31
blender render node  (0) 2024.03.20
BGE / UPBGE(Blender game engine)  (0) 2023.10.20
blender on macos  (0) 2022.05.24
Posted by 구차니

freeT KT 에서 freeT SK로 옮기긴 했는데 신청한지 2시간도 안되서

10분 내로 유심 바꾸라는 문자가 오더니 2분 만에 처리 완료..

와... -_-

웬일로 이렇게 빠르대?

'개소리 왈왈 > 모바일 생활' 카테고리의 다른 글

요금제 변경  (0) 2024.07.06
요금제 쓸만한 게 없냐..  (0) 2024.06.28
번호이동 신청  (0) 2024.05.07
핸드폰 개통  (2) 2024.02.05
핸드폰 요금제 변경  (0) 2023.08.14
Posted by 구차니