일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 채보
- 컨테이너
- Numpy
- VS Code
- C
- C++
- paramiko
- 오류
- ubuntu
- pip
- JSON
- mysql
- Linux
- LIST
- OpenCV
- pytorch
- SSH
- 프로그래머스
- Visual Studio
- Docker
- pandas
- windows forms
- 핑거스타일
- YOLO
- error
- C#
- Python
- label
- Selenium
- 기타 연주
- Today
- Total
목록error (9)
기계는 거짓말하지 않는다
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..
update, delete 쿼리를 사용할 때 where 절 없이 여러 row가 변경되는 쿼리가 실행되지 않는 경우가 있다. MySQL Workbench 상단 메뉴바의 Edit -> Preperences...를 클릭하면 아래와 같은 창이 열린다. 왼쪽 SQL Editor를 클릭하고 Safe Updates (rejects UPDATEs and DELETEs with no restrictions) 체크 해제한다. Workbench 재시작 후 확인한다. 작업이 끝나면 실수 방지를 위해 다시 체크하는 것을 권장한다. MySQL Query 쿼리를 이용할 경우 아래와 같이 입력한다. SET SQL_SAFE_UPDATES = 0; # 실행할 SQL SET SQL_SAFE_UPDATES = 1;
Updates were rejected because the remote contains work that you do git pull 후 다시 git push 과정을 실행한다.
cmake 업데이트 후 cmake --version 확인 시 위와 같은 오류를 보는 경우가 있다. 아래의 명령어를 입력하고 다시 버전을 확인해 본다. hash -r cmake --version
fatal error: openssl/opensslv.h: No such file or directory 위와 같은 에러 메시지를 보는 경우가 있다. 다음 패키지를 설치한다. sudo apt-get install libssl-dev
VS Code Remote Development 확장을 사용할 때 이런 오류를 보는 경우가 있다. 사용자/.ssh 디렉터리 내부에 따로 설정한 config 파일에 HostName과 User로 사용을 잘 하고 있었다. 원래 잘 되던 것이 갑자기 안되거나 SSH 서버 재설치를 했고, 다른 방법을 모두 시도해 보았는데 안된다면 같은 디렉터리 안의 known_hosts 파일의 키가 바뀌었을 수도 있다. 이 파일 내부의 사용자를 지우거나 통째로 삭제하고 VS Code의 SSH를 다시 연결하여 해결했다.
TypeError: 'int' object is not subscriptable 인덱스로 지정할 수 없는 경우(단일 값) # TypeError: 'int' object is not subscriptable intValue = 10 print(intValue[3]) intArray = [1, 2, 3] print(intArray[0][1]) TypeError: list indices must be integers or slices, not str TypeError: string indices must be integers 숫자 형식 인덱스에 Key 형식으로 받은 경우 # TypeError: list indices must be integers or slices, not str intArray = [1, 2..
Python 형 변환 시 다음과 같은 오류를 볼 때가 있다. ValueError: invalid literal for int() with base 10 아래 코드는 오류를 일으킨다. str = "35.231" intVal = int(str) print(intVal) string을 int로 형 변환 시 소수점 형식일 경우 우선 float 변환 후 진행한다. str = "35.231" intVal = int(float(str)) print(intVal)