Category: Python

파이썬 언어 관련 카테고리입니다.

Python프로그래밍

[python] 파이썬 ImportError: cannot import name ‘long’ from ‘numpy’ 라이브러리 오류: FutureWarning: In the future np.long will be defined as the corresponding NumPy scalar. from numpy import long 오류 해결방법

from numpy import long 모듈이 설치되어 있음에도 불구하고 파이썬 스크립트를 실행시 아래와 같은 오류가 발생했을 때 해결방법을 기록해둔다. numpy 설치된 버전 확인하기 1.24.4 버전 부터 numpy.long메소드가 없어져서 사용할...
프로그래밍IDEPython

크롬드라이버 OSError: [Errno 8] Exec format error: 오류 해결방법(chromedriver-mac-x64/THIRD_PARTY_NOTICES.chromedriver)

맥북m1 Pro에서 잘 실행되던 크롬 드라이버에 대한 오류가 발생되었다. 오류 내용은 아래와 같은데…..맥OS업데이트 후 발생되는 문제로 생각된다. 그런데 왜 THIRD_PARTY_NOTICES.chromedriver이 실행되는것일까? chromedriver 파일이 실행되어야하는데 말이다....
Python프로그래밍

[Python urllib] 파이썬 한글이 포함된 URL 호출시 UnicodeEncodeError: ‘ascii’ codec can’t encode characters in position 5-6: ordinal not in range(128) 오류 수정 방법

특정 url을 urllib를 사용하여 html를 읽어오려고 하는데, 오류가 발생한다. 오류 내용은 다음과 같다. 오류가 발생한 코드는 아래와 같다. 오류 해결방법 urllib 라이브러리를 사용할 때, URL에...
error: Content is protected !!