일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pip
- 명령어
- 기타 연주
- Selenium
- mysql
- paramiko
- C++
- Linux
- error
- pytorch
- JSON
- C#
- SSH
- label
- Numpy
- pandas
- 채보
- windows forms
- YOLO
- C
- 핑거스타일
- Visual Studio
- Python
- VS Code
- Docker
- OpenCV
- 프로그래머스
- ubuntu
- 오류
- LIST
- Today
- Total
목록key (3)
기계는 거짓말하지 않는다
Ubuntu에서 sudo apt update를 실행할 때, 다음과 같은 경고 메시지를 보는 경우가 있다.W: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details가장 빠른 방법은 아래와 같다. 그러나 이 방법은 강제적인 방법이므로 좋은 선택은 아닐 수 있다.cd /etc/aptsudo cp trusted.gpg trusted.gpg.d다른 방법은 아래 링크를 참고한다.Legacy trusted.gpg keyring – ‘apt-key’ Deprecation on Ubuntu Solve: Legacy trusted.gpg keyring - ‘a..
Python에서 정렬 함수를 사용할 때 itemgetter를 이용하여 정렬 key 기준을 쉽게 가져올 수 있다. class 인스턴수 변수를 기준으로 key 값을 가져오려면 attrgetter를 사용한다. lambda로 대체 가능하다. from operator import itemgetter # list itemgetter temp_list = [(10, "C"), (20, "A"), (30, "B")] result = sorted(temp_list, key=itemgetter(0)) print(result) # dict itemgetter temp_dict = [{"number": 10, "string": "C"}, {"number": 20, "string": "A"}, {"number": 30, "st..
Python 3.6 configparser Docs 14.2. configparser — Configuration file parser — Python 3.6.15 문서 14.2. configparser — Configuration file parser Source code: Lib/configparser.py This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in Microsoft Windows INI file docs.python.org configparser의 key에 대문자를 작성해도 confi..