일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 분당맛집
- opencv
- 티스토리챌린지
- 맛집
- 판교
- Android
- ChatGPT
- socketio
- error
- tensorflow
- openAI
- CLASS
- no space left on device
- string
- ros
- python
- ROS2
- timm
- Torch
- GPT
- pytorch
- 터미널
- ubuntu
- TTS
- linux
- 딥러닝
- CUDA
- humble
- 오블완
- 스팸
- Today
- Total
목록전체 글 (132)
RoBoLoG
클래스 내에 is_on 변수와 timer 함수를 포함시키고 싶다면, 다음과 같이 코드를 수정할 수 있습니다 방법1. time.sleep 사용 import threading import time class MyClass: def __init__(self): self.is_on = False def timer(self): time.sleep(10) self.is_on = True def start_timer(self): timer_thread = threading.Thread(target=self.timer) timer_thread.start() timer_thread.join() print("is_on:", self.is_on) # 클래스의 인스턴스 생성 my_object = MyClass() # 타이머 ..
ssh로 원격 접속해서 UI 모듈을 실행하는 방법 ssh로 원격 접속 후 cv2.imshow나 UI를 실행하면 오류가 발생한다. tkinter 기반의 UI를 실행하면 아래와 같은 오류가 발생한다. Traceback (most recent call last): File "ui_module.py", line 493, in window = tk.Tk() File "/usr/lib/python3.8/tkinter/__init__.py", line 2270, in __init__ self.tk = _tkinter.create(screenName, baseName, className, interactive, wantobjects, useTk, sync, use) _tkinter.TclError: no display..
ROS에서 virtualenv를 사용하려면 몇몇 python 패키지들을 설치해주는 것이 좋다. pip install -U rosinstall msgpack empy defusedxml netifaces 위에 처럼 설치해주면 웬만해서는 잘 실행이 되는 것 같다.
ROS 에러 발생 catkin_make 하는데 아래와 같은 에러가 발생함 -- Could NOT find PY_em (missing: PY_EM) CMake Error at /opt/ros/noetic/share/catkin/cmake/empy.cmake:30 (message): Unable to find either executable 'empy' or Python module 'em'... try installing the package 'python3-empy' Call Stack (most recent call first): /opt/ros/noetic/share/catkin/cmake/all.cmake:164 (include) /opt/ros/noetic/share/catkin/cmake/cat..
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는 패키지를 설치할 때 임시 파일을 생성합니다. 이 파..
Python 패키지인 kobert 사용시 아래와 같은 경고가 뜬다면 huggingface/tokenizers: The current process just got forked, after parallelism has already been used. Disabling parallelism to avoid deadlocks... To disable this warning, you can either: - Avoid using `tokenizers` before the fork if possible - Explicitly set the environment variable TOKENIZERS_PARALLELISM=(true | false) 아래 코드를 소스코드에 넣어 해결 가능 import os os.env..
[adb] adb server version (41) doesn't match this client (39); killing... Ubuntu에서 아래와 같이 adb 관련 모든 기능이 실행이 안될 때 어떻게 탈출해야할까?user@user:~$ adb devicesList of devices attachedadb server version (41) doesn't match this client (39); killing...ADB server didn't ACKFull server startup log: /tmp/adb.1000.logServer had pid: 4260--- adb starting (pid 4260) ---adb I 02-23 17:13:09 4260 4260 main.cpp:57] A..
git branch [branch이름] 을 터미널에 입력했을 때 fatal: not a valid object name: 'master' 에러가 나왔다면? >>> commit을 한 번도 하지 않아서 해당 오류 발생 >>> commit을 한 뒤 다시 브런치 생성하면 정상 작동됨