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
Yaayy ! I have found the answer. Just use --default-timeout=100 parameter with the install. e.g
sudo pip install --default-timeout=100 future
They are two ways to handlie this issue.
First method:
sudo pip install --default-timeout=100 future
Second one: pip install --default-timeout=100 future.
Note: If you are not superuser of your machine, sudo pip command, will not work. (Its happened with me.)
sudo pip install --default-timeout=100 future
or alternatively
export PIP_DEFAULT_TIMEOUT=100 worked for me on mac osx