2017-10-15 8 views
2

にpdfminer.sixをインストールすることはできません、私はが私のcmdウィンドウでのWindows 10

pip install pdfminer.six 

を入力し、それは私にこれらのエラーを与えます。

Microsoft Windows [Version 10.0.15063] 
(c) 2017 Microsoft Corporation. All rights reserved. 

C:\Users\Eric Kim>pip install pdfminer.six 
Collecting pdfminer.six 
    Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x04435730>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed',))': /simple/pdfminer-six/ 
    Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x04435870>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed',))': /simple/pdfminer-six/ 
    Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x04435410>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed',))': /simple/pdfminer-six/ 
    Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x044355D0>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed',))': /simple/pdfminer-six/ 
    Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x04435150>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed',))': /simple/pdfminer-six/ 
    Could not find a version that satisfies the requirement pdfminer.six (from versions:) 
No matching distribution found for pdfminer.six 

私はWindows 10でPython 3.6を使用します。どうすればよいですか? pipを使わずにこのパッケージをインストールできる方法はありますか?私は、このリンクを使用したい:https://pypi.python.org/pypi/pdfminer.six/20170720

私はプログラミングにかなり新しいので、私はあまり知りません。

答えて

1

これは、再試行エラーメッセージに示されているように、プロキシの問題です。あなたのピップはプロキシ経由でインターネットに接続しません。

pip --proxy url:port pdfminer.sixurl:portとお試しください。 proxy.example.com:8080

これが機能しない場合は、pipを使用してパッケージをインストールするためにプロキシなしで別のインターネット接続を使用するか、pipとプロキシに関する回答が多いthreadをご覧ください。

関連する問題