elesis's haunt

[Python] unfortunately all 20 could not be downloaded because some images were not downloadable. 0 is all we got for this search filter! 본문

프로그래밍 언어/Python

[Python] unfortunately all 20 could not be downloaded because some images were not downloadable. 0 is all we got for this search filter!

elesis 2022. 3. 16. 16:27
pip install google_images_download

해당 명령어로 설치시 글제목과 같은 에러가 뜨면서 이미지 다운로드가 안된다.

 

아래 방식대로 메뉴얼하게 다운로드 해주면 문제해결!

# 1. 안돌아가는 모듈을 삭제한다.
pip uninstall google_images_download 

# 2. git에서 직접 받는다.
git clone https://github.com/Joeclinton1/google-images-download.git

# 3-1. 해당 모듈에 접근한다.
cd google-images-download

# 3-2. setup.py를 실행해준다.
	# sudo 없이도 가능하다.
sudo python setup.py install
 
# 3-2. 설치해준다.
pip install git+https://github.com/Joeclinton1/google-images-download.git

 

 

Comments