How to solve ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443) with pip?

前端 未结 3 1813
无人及你
无人及你 2020-11-27 12:00

I recently need to install some packages

pip install future
pip install scikit-learn
pip install numpy
pip install scipy

I also tried by wr

3条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-27 12:15

    Yaayy ! I have found the answer. Just use --default-timeout=100 parameter with the install. e.g

    sudo pip install --default-timeout=100 future
    

提交回复
热议问题