일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- shell
- 회귀
- 백준알고리즘
- 리눅스
- 텐서플로우
- 학습
- 알고리즘
- C++
- c
- 코딩
- OpenCV
- 공부
- TensorFlow
- 턱걸이
- 백준
- 시스템프로그래밍
- 쉘
- 프로세스
- 프로그래밍
- error
- C언어
- Windows 10
- python
- CV
- 운영체제
- linux
- Computer Vision
- Windows10
- 영상처리
- 딥러닝
- Today
- Total
목록공부/All of error (8)
줘이리의 인생적기
problem sudo apt-get install error Reading package lists... Error! E: Encountered a section with no Package: header E: Problem with MergeList /var/lib/apt/lists/kr.archive.ubuntu.com_ubuntu_dists_bionic_universe_binary-amd64_Packages E: The package lists or status file could not be parsed or opened. solution sudo rm /var/lib/apt/lists/* -vf sudo apt-get update
ERROR Exception: PyQtGraph requires one of PyQt5, PyQt6 or PySide2 or PySide6; none of these packages could be imported. SOLUTION pip install pyqt5
ERROR ModuleNotFoundError: No Module named 'OpenGL' SOLUTION pip installl pyopengl
ERROR ModuleNotFoundError: No module named 'netifaces' SOLUTION pip install netifaces
pytorch 버전 확인 방법, cuda 연결 확인 방법을 알아보겠습니다. $ python >>> import torch >>> print(torch.__version__) >>> (토치 버전) >>> torch.cuda.is_available() >>> (True or False) >>> torch.cuda.current_device() >>> (현재 연결된 device 번호) >>> torch.cuda.get_device_name(위 번호 입력) >>> (연결된 device 번호)
ERROR ModuleNotFoundError: No module named 'sparseconvnet' SOLUTION git clone git@github.com:facebookresearch/SparseConvNet.git cd SparseConvNet/ bash develop.sh
ERROR ModuleNotFoundError: No module named 'skimage' SOLUTION pip install scikit-image