분류 전체보기(28)
-
[Error] cv2.error: OpenCV(4.5.3) C:\Users\runneradmin\AppData\Local\Temp\pip-req-build-z4706ql7\opencv\modules\highgui\src\window.cpp:1274: error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Coco..
블로그 이전했어요 https://cccaaa.tistory.com/10 opencv-python / opencv-python-contrip 둘 다 uninstall 후 다시 pip install 그래도 안되면 pip uninstall opencv-python-headless -y ref : https://www.google.com/search?q=cv2.error%3A+OpenCV(4.5.3)+C%3A%5CUsers%5Crunneradmin%5CAppData%5CLocal%5CTemp%5Cpip-req-build-z4706ql7%5Copencv%5Cmodules%5Chighgui%5Csrc%5Cwindow.cpp%3A1274%3A+error%3A+(-2%3AUnspecified+error)+The+fun..
2021.11.24 -
[Error] RuntimeError: CUDA error: no kernel image is available for execution on the deviceCUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect.
내 디바이스와 맞지 않는 torch라는 뜻, 무지성으로 pip install requirements.txt하지말고 아래 링크에서 원래 사용하던 torch 버전으로 설치해주자 https://pytorch.org/get-started/previous-versions/ PyTorch An open source machine learning framework that accelerates the path from research prototyping to production deployment. pytorch.org 내가 원래 뭘써야하는지 모르겠다 하면 아래 따라하면 됨 1. 내 디바이스의 스펙 알아보고 해당하는 compatibility 확인 (nvidia gpu) https://en.wikipedia.org/..
2021.10.18 -
우분투 듀얼부팅과 기본환경설정 / / dev/nvme0n1p3 : clean, xxx/xxx files, xxx/xxx blocks 오류 // 설치 후 검은 화면 오류
오류 해결은 맨 아래에 블로그 이전했어요 https://cccaaa.tistory.com/11 우분투 듀얼부팅과 기본환경설정 / / dev/nvme0n1p3 : clean, xxx/xxx files, xxx/xxx blocks 오류 // 설치 후 검 오류 해결은 맨 아래에 최근에 개발환경 설정할 일이 많아졌는데, 매번 하나하나 찾아보기 귀찮아서 정리해둠 하고자 하는 일은 C드라이브에 윈도우 깔린 컴(또는 노트북)에 우분투 20.04 LTS(21.08 cccaaa.tistory.com 최근에 개발환경 설정할 일이 많아졌는데, 매번 하나하나 찾아보기 귀찮아서 정리해둠 하고자 하는 일은 C드라이브에 윈도우 깔린 컴(또는 노트북)에 우분투 20.04 LTS(21.08기준 최신) D드라이브에 듀얼부팅하기 우분투 ..
2021.09.03 -
[Error] anaconda 설치했는데 conda: command not found 오류
Window 환경 1. 제대로 설치했으면 환경변수 확인 Linux 환경 1. 제대로 설치했으면 ~/.bashrc 맨 마지막줄에 export PATH="여기Anaconda/bin경로따옴표빼고":$PATH 추가하고 source ~/.bashrc 실행 터미널 껐다 켜서 conda list로 확인 2. 그래도 안되면 conda 대신 conda.exe로 실행해보기 ex. conda info -> conda.exe info - 나는 이방법으로 해결
2021.07.15 -
[Error] LINK : fatal error LNK1181: 'C:\Program.obj' 입력 파일을 열 수 없습니다 오류
출처 : https://peeahn.tistory.com/346 LINK : fatal error LNK1181: cannot open input file ‘C:\Program.obj’ 문제가 나타날때 http://tinobox.com/wordpress/c-programming/link-fatal-error-lnk1181-cannot-open-input-file-cprogramobj/ http://www.winasm.net/forum/index.php?showtopic=2034 http://support.microsoft.com/kb/815645 위.. peeahn.tistory.com 환경변수 설정할 때 띄어쓰기가 있으면 발생함 path가 예를들어 C:\Program Files (x86) 라면 시스템변..
2021.06.19 -
py파일에서 리눅스 명령어 실행하기
import os os.system('pip install torch') 하면 됨
2021.05.31