일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- pytorch
- Selenium
- Visual Studio
- error
- 기타 연주
- Docker
- label
- C#
- LIST
- JSON
- windows forms
- Numpy
- 오류
- ubuntu
- YOLO
- 채보
- 핑거스타일
- C++
- SSH
- Linux
- VS Code
- mysql
- pandas
- pip
- 프로그래머스
- OpenCV
- C
- paramiko
- Today
- Total
목록2025/01 (5)
기계는 거짓말하지 않는다
Python의 faulthandler 모듈은 프로그램에서 발생하는 심각한 오류나예외(메모리 관련 오류)에 대한 진단을 돕는 모듈이다.Python의 내부 오류나 C 확장 모듈에서 발생한 오류를 추적하고,문제가 발생한 지점을 더 쉽게 찾아내도록 도와준다.Python 3.3 버전 이상에서만 사용할 수 있다.기본 사용법은 아래와 같다.import faulthandlerfaulthandler.enable()심각한 오류 발생 시 자동으로 스택 트레이스를 출력하여 문제 발생 지점을 알려준다.코드 실행 중 특정 지점에서 수동으로 스택 트레이스를 출력하려면 dump_traceback을 사용할 수 있다.import faulthandlerfaulthandler.dump_traceback()faulthandler — 파이썬 ..
Python에서 colorsys 모듈을 이용하여 지정된 개수만큼의 색상을일정하게 분포된 색상 팔레트를 생성하는 간단한 함수이다.import colorsysdef generate_colors(num_classes: int, alpha=1): """ list of tuple: (R, G, B, A) 0~255 """ colors = [] for i in range(num_classes): hue = i / num_classes # S=1.0, V=1.0 rgb = colorsys.hsv_to_rgb(hue, 1.0, 1.0) # # RGB 0~255 # r, g, b = [int(x * 255) for x in ..
Python의 configparser 모듈로 config file을 읽고 쓰면 config file의 주석은 유지되지 않는다.주석을 유지해야 할 때, 가능하도록 간단히 구현한 예시이다.import configparserdef read_config_with_comments(file_path): """config file과 config file의 line을 함께 read""" with open(file_path, 'r') as file: lines = file.readlines() config = configparser.ConfigParser(allow_no_value=True) config.read(file_path) return config, linesdef wri..
FileZilla로 Docker Container 내부의 파일을 전송하는 간략한 방법이다. FileZilla의 사이트 관리자에서 SFTP 프로토콜 설정을 추가한다.호스트는 컨테이너의 호스트 주소이며, 포트는 컨테이너 외부에서 SSH로 접속할 수 있는 포트이다.빨간색 사각형의 포트 주소는 일치해야 한다.그리고 비밀번호는 컨테이너 내에서 설정해야 한다. 다음으로, 컨테이너 내에서 SFTP 설정을 해야 한다.openssh-server가 설치되어 있어야 한다.apt install openssh-server설치가 완료되면 sshd_config 파일에서 SFTP 설정을 변경한다.vi /etc/ssh/sshd_configSubsystem 항목의 sftp를 internal-sftp로 수정한다.그 후 FileZilla에..
Ubuntu에서 pip를 이용하여 Flask를 설치할 때, 아래와 같은 오류가 발생했다.distutils는 초기 Python 패키지를 빌드하고 설치하는 도구이며,Python이 최근 버전이면 distutils는 더 이상 사용되지 않고, setuptools와 pip를 사용한다.Installing collected packages: blinker Attempting uninstall: blinker Found existing installation: blinker 1.4error: uninstall-distutils-installed-package× Cannot uninstall blinker 1.4╰─> It is a distutils installed project and thus we cannot..