김빵디

python 인증서 pip install 패키지 본문

외로운 싸움/Python

python 인증서 pip install 패키지

김빵디 2022. 7. 7. 17:34
728x90

 

사설인증서를 사용해야되는 환경에서 아무리 pip install 패키지명~을 외쳐도 하염없이 ERROR만 뱉어내니..

절대 이런 실수는 하지 말기..

 

ERROR: Could not find a version that satisfies the requirement tqdm (from versions: none)
ERROR: No matching distribution found for tqdm

▲ 참고로 나는 tqdm 패키지를 다운받고 싶었다....

 

tqdm 패키지란?

python에서 Progress Bar를 나타내주는 패키지

 

pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org 패키지명

 

나같은경우는 tqdm 패키지를 다운받으려했으니

pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org tqdm(패키지명) 로 설치!

 

 

그럼 이렇게 이쁘게 설치되는 모습을 볼수있다!

나름 원인을 찾아보려 짱꾸를 굴리다가 찾아냈다 뿌듯해..

 

 

출처: https://yooloo.tistory.com/22

728x90