2012-03-29 3 views
1

나는 패키지를 설치하려고 할 때이 오류가 점점 계속 :파이썬 키링 다운로드 오류

Download error on http://keyring-python.org/: (-2, 'Name or service not known') -- Some packages may not be found! 
Download error on http://home.python-keyring.org/: (-3, 'Temporary failure in name resolution') -- Some packages may not be found! 
Download error on http://home.python-keyring.org/: (-3, 'Temporary failure in name resolution') -- Some packages may not be found! 
Download error on http://home.python-keyring.org/: (-3, 'Temporary failure in name resolution') -- Some packages may not be found! 
Download error on http://home.python-keyring.org/: (-3, 'Temporary failure in name resolution') -- Some packages may not be found! 
Download error on http://home.python-keyring.org/: (-3, 'Temporary failure in name resolution') -- Some packages may not be found! 
Download error on http://home.python-keyring.org/: (-3, 'Temporary failure in name resolution') -- Some packages may not be found! 
Download error on http://home.python-keyring.org/: (-3, 'Temporary failure in name resolution') -- Some packages may not be found! 

setup.py은 다음과 같습니다 home.python-keyring.orgkeyring-python.org가 DNS에 해결

from setuptools import setup, find_packages 

setup(
    name="blah", 
    version='0.9dev', 
    description="blah", 
    package_dir = {'': 'src'}, 
    packages=find_packages('src'), 
    include_package_data=True, 
    zip_safe=False, 
    install_requires=[ 
     'setuptools', 
     'keyring', 
     'argparse', 
     'Cheetah' 
    ], 
    entry_points = """ 
    [console_scripts] 
    A = A:main 
    """, 
) 

답변

1

어느 호스트 이름. 패키지가 호스팅되는 위치를 찾아 올바른 호스트 이름을 사용해야합니다.

+0

어디에서 키 링을 설치할 때 시스템이 보일 수 있도록 'setup.py'에 링크를 지정합니까? – BPm