Recientemente necesito instalar algunos paquetes
pip install future
pip install scikit-learn
pip install numpy
pip install scipy
También probé escribiendo sudo
antes que ellos, pero todo resultó con los siguientes errores en líneas rojas:
Exception:
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main
status = self.run(options, args)
File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 290, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1198, in prepare_files
do_download,
File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1376, in unpack_url
self.session,
File "/usr/lib/python2.7/dist-packages/pip/download.py", line 572, in unpack_http_url
download_hash = _download_url(resp, link, temp_location)
File "/usr/lib/python2.7/dist-packages/pip/download.py", line 433, in _download_url
for chunk in resp_read(4096):
File "/usr/lib/python2.7/dist-packages/pip/download.py", line 421, in resp_read
chunk_size, decode_content=False):
File "/usr/lib/python2.7/dist-packages/urllib3/response.py", line 256, in stream
data = self.read(amt=amt, decode_content=decode_content)
File "/usr/lib/python2.7/dist-packages/urllib3/response.py", line 201, in read
raise ReadTimeoutError(self._pool, None, 'Read timed out.')
ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out.
Storing debug log for failure in /root/.pip/pip.log'
ping pypi.python.org
ver si funciona. Se puede resolver con algo tan simple como reiniciar su enrutador o volver a conectarse a Internet o incluso simplemente volver a intentarlo después de algún tiempo. siga Cómo preguntar antes de publicar aquí.Respuestas:
¡Yaayy! He encontrado la respuesta. Simplemente use el parámetro --default-timeout = 100 con la instalación. p.ej
sudo pip install --default-timeout=100 future
fuente
export PIP_DEFAULT_TIMEOUT=100
porque tenía elpip
comando en un Dockerfile compartido y era un requisito temporal para mí. ¡Pero funciona, gracias!pip help
opip install help
. Hay howerversocket timeout
. Me pregunto cuál es el valor predeterminado.pip help
opip install help
. Hay howerversocket timeout
. Me pregunto cuál es el valor predeterminado.sudo pip install --default-timeout = 100 future
o alternativamente
exportar PIP_DEFAULT_TIMEOUT = 100 funcionó para mí en mac osx
fuente
Son dos formas de solucionar este problema.
Primer método:
sudo pip install --default-timeout = 100 future
Segundo: pip install --default-timeout = 100 future.
Nota: Si no es superusuario de su máquina, el comando sudo pip no funcionará. (Me pasó a mí).
fuente