일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 터미널
- ubuntu
- 스팸
- ros
- 딥러닝
- CUDA
- Android
- string
- humble
- openAI
- opencv
- ChatGPT
- tensorflow
- pytorch
- error
- ROS2
- python
- 맛집
- 분당맛집
- no space left on device
- GPT
- timm
- Torch
- socketio
- 오블완
- 판교
- TTS
- 티스토리챌린지
- linux
- CLASS
- Today
- Total
목록error (6)
RoBoLoG
RKNN Toolkit2를 설정하는 과정에서 아래와 같은 오류 메시지를 만날 수 있습니다:OSError: /usr/lib64/librknnrt.so: cannot open shared object file: No such file or directory 이 오류는 librknnrt.so 파일이 시스템의 표준 라이브러리 경로에 없거나, 환경 변수가 제대로 설정되지 않았기 때문에 발생합니다. 이번 글에서는 이 문제를 해결하는 방법을 설명합니다.오류 원인librknnrt.so는 RKNN 런타임 라이브러리로, Rockchip NPU에서 모델을 실행하기 위해 필수적인 파일입니다. 이 파일이 /usr/lib64 경로에 없거나, 환경 변수에 추가되지 않으면 프로그램이 런타임에서 라이브러리를 로드할 수 없어 위와 같은..
[오류]ROS2에서 launch 파일을 실행했는데, 다음과 같은 Exec format error가 발생하였습니다.[INFO] [launch]: Default logging verbosity is set to INFO[ERROR] [publisher_node.py-1]: exception occurred while executing process:Traceback (most recent call last): File "/opt/ros/foxy/lib/python3.8/site-packages/launch/actions/execute_process.py", line 723, in __execute_process transport, self._subprocess_protocol = await async..
1. 오류 메시지Collecting dbus-python Using cached dbus-python-1.3.2.tar.gz (605 kB) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... error ERROR: Command errored out with exit status 1: command: /usr/local/rc_sw/release/Beryl-R1/common/vision_ws/vis_venv/bin/python /tmp/tmpz0cdfxxn prepare_metadata_for_build_wheel /tmp/tmpz7..
ROS CMake 오류: error: option --install-layout not recognized 아래와 같이 오류가 발생 error: option --install-layout not recognized CMake Error at context_recognizer/catkin_generated/safe_execute_install.cmake:4 (message): execute_process(/home/user/catkin_ws/build/ros_node/catkin_generated/python_distutils_install.sh) returned error code Call Stack (most recent call first): context_recognizer/cmake_install..
Opencv Imshow 오류 cv2.imshow('Webcam', frame) cv2.error: OpenCV(4.5.5) /io/opencv/modules/highgui/src/window.cpp:1268: 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' Python 환경에서 cv2.imshow..
pip install에서 발생하는 에러에 대한 1차원적 해결 법 - export TMPDIR='/var/tmp' - Python 패키지를 설치할 때 "No space left on device" 오류에 직면했다면, 당신은 혼자가 아닙니다. 이 문제는 설치 중 임시 파일을 저장할 충분한 공간이 없을 때 발생합니다. 다행히도, 간단한 환경 변수 조정으로 이 문제를 해결할 수 있습니다: export TMPDIR='/var/tmp'. 1. 오류의 원인 ERROR: Could not install packages due to an EnvironmentError: [Errno 28] No space left on device Python의 패키지 관리자인 pip는 패키지를 설치할 때 임시 파일을 생성합니다. 이 파..