Study146 Python Offline Package Install 사용법 1. 먼저 다운로드 받을 폴더에서 pip download [Package Name] 명령어를 입력해줍니다. pip download requests 2. 해당 폴더에 의존성 패키지가 포함된 파일이 다운로드 된 것을 확인할 수 있습니다. 3. 해당 파일을 다운로드 할 피씨로 옮긴 뒤 pip install --no-index --find-links=[PATH] [Package Name] 명령어로 패캐지를 정상적으로 설치할 수 있습니다. pip install --no-index --find-links=. requests 2020. 9. 21. Python Error 해결 방법 Error 1 : AttributeError: 'module' object has no attribute 'SSL_ST_INIT' python -m easy_install --upgrade pyOpenSSL Error 2 : UnicodeDecodeError: 'ascii' codec can't decode byte ~ import sys reload(sys) sys.setdefaultencoding('utf-8') Error 3: insecureRequestWarning: Unverified HTTPS request requests.packages.urllib3.disable_warnings(requests.packages.urllib3.exceptions.InsecureRequestWarning) 2020. 9. 21. 이전 1 ··· 14 15 16 17 다음