记录下安装python第三方包超时报错,解决方法:(以安装numpy为例)
pip install numpy
报错:raise ReadTimeoutError(self._pool, None, 'Read timed out.')
改变默认时间
pip --default-timeout==100 install -U numpy
记录下安装python第三方包超时报错,解决方法:(以安装numpy为例)
pip install numpy
报错:raise ReadTimeoutError(self._pool, None, 'Read timed out.')
改变默认时间
pip --default-timeout==100 install -U numpy