1. pip 소개
Pip은 Python 패키지 설치 도구로, 패키지 설치, 설치된 패키지 나열, 패키지 업그레이드, 패키지 제거 기능을 제공합니다.
Pip은 easy_install을 대체하며 easy_install과 동일한 패키지 검색 기능을 제공합니다. 따라서 easy_install을 사용하여 설치할 수 있는 패키지도 pip를 사용하여 설치할 수 있습니다.
2. Linux에서의 소스 구성
pip.conf 파일이 있는지 확인
>>CD~
>> mkdir .pip
>> ls ~/.pip
3. 소스 수정
옵션 1: pip.conf를 직접 편집
sudo vi ~/.pip/pip.conf
[global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com
옵션 2:
pip install turtle --trusted-host mirrors.aliyun.com
4. 테스트 비교
기본 소스를 사용한 속도 :
Downloading alembic-0.8.0.tar.gz (918kB) 100% |████████████████████████████████| 921kB 9.9kB/s Collecting beautifulsoup4==4.4.1 (from -r requirements.txt (line 2)) Downloading beautifulsoup4-4.4.1-py2-none-any.whl (81kB) 100% |████████████████████████████████| 81kB 5.2kB/s Collecting cffi==1.2.1 (from -r requirements.txt (line 3)) Downloading cffi-1.2.1.tar.gz (335kB) 100% |████████████████████████████████| 337kB 15kB/s Collecting chardet==2.3.0 (from -r requirements.txt (line 4)) Downloading chardet-2.3.0.tar.gz (164kB) 100% |████████████████████████████████| 174kB 9.4kB/s Collecting cryptography==1.0 (from -r requirements.txt (line 5)) Downloading cryptography-1.0.tar.gz (331kB) 100% |████████████████████████████████| 337kB 7.1kB/s Collecting Django==1.8.4 (from -r requirements.txt (line 6)) Downloading Django-1.8.4-py2.py3-none-any.whl (6.2MB) 100% |████████████████████████████████| 6.2MB 16kB/s
국내 소스를 활용한 속도 :
Collecting alembic==0.8.0 (from -r requirements.txt (line 1)) Downloading http://mirrors.aliyun.com/pypi/packages/9f/e6/d261c6958d418bcb542b8f79fae7fcf14f7f647f891d42c4ed86a499d690/alembic-0.8.0.tar.gz (918kB) 100% |████████████████████████████████| 921kB 160kB/s Collecting beautifulsoup4==4.4.1 (from -r requirements.txt (line 2)) Downloading http://mirrors.aliyun.com/pypi/packages/33/62/f3e97eaa87fc4de0cb9b8c51d253cf0df621c6de6b25164dcbab203e5ff7/beautifulsoup4-4.4.1-py2-none-any.whl (81kB) 100% |████████████████████████████████| 81kB 630kB/s Collecting cffi==1.2.1 (from -r requirements.txt (line 3)) Downloading http://mirrors.aliyun.com/pypi/packages/22/86/b4ae6aeec29105cd2faa07ed2f647349fbcad502d880cb504dca84368853/cffi-1.2.1.tar.gz (335kB) 100% |████████████████████████████████| 337kB 1.4MB/s Collecting chardet==2.3.0 (from -r requirements.txt (line 4)) Downloading http://mirrors.aliyun.com/pypi/packages/7d/87/4e3a3f38b2f5c578ce44f8dc2aa053217de9f0b6d737739b0ddac38ed237/chardet-2.3.0.tar.gz (164kB) 100% |████████████████████████████████| 174kB 1.1MB/s Collecting cryptography==1.0 (from -r requirements.txt (line 5)) Downloading http://mirrors.aliyun.com/pypi/packages/60/1f/8cf32f1fa61efafea7d4fcdcb5080c073f99ada1d2a436527bc392f2f8ea/cryptography-1.0.tar.gz (331kB) 100% |████████████████████████████████| 337kB 1.3MB/s Collecting Django==1.8.4 (from -r requirements.txt (line 6))
비교적으로 속도가 조금 증가한 것이 아니라 날아갈 만큼 빠르게 증가했습니다.
5. 요약
그렇습니다. 문제가 발생하면 해결 방법을 찾아야 합니다. 이것이 바로 기술의 매력입니다. 이 글의 내용이 모든 분들의 공부나 업무에 조금이나마 도움이 되었으면 좋겠습니다. 궁금한 사항이 있으시면 메시지를 남겨주세요.