본문 바로가기

[Python] pygraphviz 설치 오류 해결 CentOS 기준, 다음과 같은 오류가 나왔을 때 해결방법 subprocess.CalledProcessError: Command '['pkg-config', '--libs-only-L', 'libcgraph']' returned non-zero exit status 1. ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-1meqr4hy/pygraphviz_1dd95962042b4dada13e5f3e5ee3a3f0/setup.py'"'"'; __file__='"'"'/tmp/pip-install-1meqr4..
[Python] pip install 시 Python.h 오류 패키지 다운로드를 위해 'pip install [패키지명]' 실행 시 Python.h : no such file or directory (그런 파일이나 디렉터리가 없습니다) 라는 오류가 발생할 경우, python-dev를 추가로 미리 설치해주어야 한다. ### Ubuntu sudo apt-get install python-dev # python2 sudo apt-get install python3-dev. # python3 ### CentOS sudo yum install python-devel # python2 sudo yum install python3-devel # python3 출처 : https://stackoverflow.com/questions/21530577/fatal-error-pytho..
[Python] stdin으로 파일 처리하기 import sys for line in sys.stdin: print(line) $ python stdin_text.py < input.txt stdin 장점 : input, open보다 속도가 빠름
[Python] OpenCV 설치 시 error 해결방법 (Ubuntu 18.04.3 기준) ## opencv (cv2) 설치 pip install opencv-python ## libGL.so.1 cannot open shared object file 에러 해결 apt-get install libgl1-mesa-glx ## libgthread-2.0.so.0 cannot open shared object file 에러 해결 apt-get install libglib2.0-0
[Python] 표준 에러 출력하기 print >> sys.stderr, '출력할 내용' # python2에서만 적용 sys.stderr.write('출력할 내용') # python2, 3 모두 적용 출처 : https://datamod.tistory.com/115
[Python] 패키지 설치 시 PEP 오류 해결 방법 pip로 설치 시 다음과 같은 오류가 발생할 경우의 해결방법 ERROR: Could not build wheels for opencv-python which use PEP 517 and cannot be installed directly pip install --upgrade pip setuptools wheel pip install opencv-python
[Anaconda] conda 명령어 수행 오류 해결 conda 관련 명령어 수행 시 '그런 파일이나 디렉터리가 없다'는 에러 발생 해결 방법 anaconda3/bin/conda 파일 수정 - 가장 윗줄에 python 경로가 주어지는데, 해당 경로가 있는지 파악해야 함 - 없는 경로로 추가되어 있다면 python이 있는 경로로 변경해주기 - 이번 경우에는 anaconda3/bin/python --> anaconda3/bin/python3로 변경 시 문제 해결
[Python] Colab에서 구글 드라이브 연동하기 from google.colab import drive drive.mount('/content/gdrive/') colab_path = '/content/gdrive/My Drive/Google Colaboratory/'