일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- python
- opencv
- TTS
- 터미널
- humble
- 스팸
- timm
- socketio
- 오블완
- GPT
- no space left on device
- linux
- pytorch
- Torch
- openAI
- ROS2
- CUDA
- tensorflow
- 딥러닝
- Android
- 분당맛집
- 맛집
- string
- ChatGPT
- ubuntu
- ros
- 판교
- error
- 티스토리챌린지
- CLASS
- Today
- Total
목록분류 전체보기 (132)
RoBoLoG
Visual Studio에서 원격으로 linux PC에 붙은 후에 UI 프로그램을 실행하면 아래와 같은 에러 발생 _tkinter.TclError: no display name and no $DISPLAY environment variable 해결법: 아래 명령을 bashrc에 넣어주거나 터미널에 입력함 export DISPLAY=:0.0
df = pickle.load(f)를 실행했을 때 아래와 같은 에러가 발생. AttributeError: Can't get attribute '_unpickle_block' on
Jupyter에서 그냥 input()을 사용하면 입력창이 뜨지 않으며 프로그램이 무한 while에서 빠져나오지 못함 ㅠㅠ 해결방법 1. ipywidgets 설치 !pip install ipywidgets 2. jupyter extension 설정 (Visual Studio 에서도 작동함) !jupyter nbextension enable --py widgetsnbextension Visual Studio의 경우 입력칸이 화면 상단에 뜸
정말 화가난다. 왜 .py 파일이 catkin_make를 하면 빈 파일이 되는가? 그냥 모든 devel, install 폴더 모두 삭제하고 다시 catkin_make install 하니까 됨... 이유는 아직 잘 모르겠음...
WIFI ON 아래 코드를 이용하여 wifi를 켤 수 있음 sudo nmcli radio wifi on WIFI 리스트 검색 아래 코드를 이용하여 wifi 리스트를 볼 수 있음 이 중에서 가장 강도가 높은 와이파이를 검색하면 됨 sudo nmcli device wifi list IN-USE BSSID SSID MODE CHAN RATE SIGNAL BARS SECURITY * B0:26:80:B5:02:80 roboAP#2 Infra 6 130 Mbit/s 100 ▂▄▆█ WPA2 B0:26:80:B5:02:F0 roboAP#2_5G Infra 153 270 Mbit/s 100 ▂▄▆█ WPA2 FC:34:97:9D:91:30 -- Infra 10 130 Mbit/s 95 ▂▄▆█ WPA1 WPA2 88..
argparse 패키지를 이용 import argparse # parser 선언 parser = argparse.ArgumentParser() # parser로 읽을 매개변수 설정 # add_argument([축약형], [풀네임], dest=[저장할변수이름], action=[output설정]) # 만약 action=store이면 변수를 읽어옴. action=store_true면 매개변수가 있는지 없는지 true/false로 parser.add_argument("-t","--type",dest="game_type",action="store") parser.add_argument("-g","--gpu",dest="use_gpu",action="store") args=parser.parse_args() # 매..
Collecting pyaudio==0.2.10 Downloading PyAudio-0.2.10.tar.gz (287 kB) |████████████████████████████████| 287 kB 6.5 MB/s Building wheels for collected packages: pyaudio Building wheel for pyaudio (setup.py) ... error ERROR: Command errored out with exit status 1: command: /home/kooksung/ai_venv/vision_tts/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-xdi..
Git으로 작업하다가 push 이후 갑자기 파일이 날아갔을 때 당황하지 말자 1. commit 로그 확인 터미널에 다음과 같이 입력하여 commit 로그를 확인한다. git reflog 그러면 commit 로그를 확인할 수 있으며, 맨 앞에 숫자/알파벳 배열은 commit id이다. 1f924e9 (HEAD -> devel, origin/devel) HEAD@{0}: commit: display and expression 8180870 (master) HEAD@{1}: reset: moving to 8180870 f7ce8ed HEAD@{2}: checkout: moving from devel to devel f7ce8ed HEAD@{3}: checkout: moving from master to dev..
sounddevice 라는 python package를 사용하면서 발생하는 문제 원인: 소리 재생 장치가 연결이 안 되어있음 해결: 이어폰이나 소리가 나오는 모니터를 연결하면 끝! File d:\virtualenv\vision_tts\lib\site-packages\sounddevice.py:179, in play(data, samplerate, mapping, blocking, loop, **kwargs) 176 ctx.write_outdata(outdata) 177 ctx.callback_exit() --> 179 ctx.start_stream(OutputStream, samplerate, ctx.output_channels, 180 ctx.output_dtype, callback, blocking,..
오류 요약 Import PySide6에서 발생하는 오류 ImportError: DLL load failed while importing Shiboken: 지정된 프로시저를 찾을 수 없습니다. 환경 OS: Windows Python: 3.8.0 PySide6: 6.2.4 오류 내용 Traceback (most recent call last): File "d:\Projects\integrated_recog_demo\webcam_demo_OS_independent.py", line 21, in from PySide6.QtWidgets import (QApplication, QWidget, QLabel, QLineEdit, QGridLayout, File "d:\virtualenv\vision_tts\lib\s..