Python não pode acessar a Internet no Windows Server 2003

0

Estou tentando instalar o pacote de solicitações no Windows 2003 com o Python 3.4. 0 Eu também tentei o Python 3.2 e obtive exatamente o mesmo resultado.

Quando eu tento uma instalação usando o pip, recebo o seguinte erro

C:\Python34\Scripts>pip install requests
Downloading/unpacking requests
  Cannot fetch index base URL https://pypi.python.org/simple/
  Could not find any downloads that satisfy the requirement requests
Cleaning up...
No distributions at all found for requests
Storing debug log for failure in C:\Documents and Settings\Administrator\pip\pip.log

Quando eu tento o easy_install, recebo o seguinte erro

C:\Python34\Scripts>easy_install requests
Searching for requests
Reading https://pypi.python.org/simple/requests/
Download error on https://pypi.python.org/simple/requests/: [WinError 10061] No connection could be made because the target machine actively refused it -- Some packages may not be found!
Couldn't find index page for 'requests' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
Download error on https://pypi.python.org/simple/: [WinError 10061] No connection could     be made because the target machine actively refused it -- Some packages may not be found!
No local packages or download links found for requests
error: Could not find suitable distribution for Requirement.parse('requests')

Eu consegui instalar solicitações no Python 3.2 a partir do código-fonte, no entanto, quando tento usar solicitações nele, ele falha com a mensagem de erro

File "C:\Python32\lib\site-packages\requests-2.3.0-py3.2.egg\requests\adapters.py", line 378, in send raise ProxyError(e) requests.exceptions.ProxyError: ('Cannot connect to proxy.', error(10061, 'No connection could be made because the target machine actively refused it'))

Parece que o Python não tem acesso à rede. O Firewall do Windows está desligado, a máquina não tem um antivírus, proxy ou firewall de terceiros. A máquina pode acessar a rede / Internet com outros aplicativos.

Eu também executei o script que escrevi em outra máquina e tudo funciona como eu esperava. Alguém tem alguma ideia do que está acontecendo? Qualquer ajuda seria muito apreciada.

    
por TheLukeMcCarthy 25.04.2014 / 11:15

1 resposta

1

Suas configurações de proxy parecem estar parando seu script acessando a Internet.

Vá para o painel de controle / Opções da Internet / Conexões / Configurações de Lan e desmarque / confirme tudo.

    
por 25.04.2014 / 15:18