1.报错背景
ubuntu中python3环境用pip3安装networkx报错如下:
raise ReadTimeoutError(self._pool, None, Read timed out.) pip._vendor. llib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=files.pythonhosted.org, port=443) Read timed out
2.解决办法
pip --default-timeout=100 install -U 第三方库名
例如:
pip --default-timeout=100 install -U networkx
注,若是pip3环境,需用pip3执行上述命令。