I get an error when I try to install flickrapi with pip
Windows10 python3.7.6 Anaconda
Enter the following command to install flickrapi with pip
(tf140) C:\Users\username>pip install flickrapi
An error has occured
ERROR: Exception:
Traceback (most recent call last):
File "C:\python\envs\tf140\lib\site-packages\pip\_vendor\urllib3\response.py", line 425, in _error_catcher
yield
File "C:\python\envs\tf140\lib\site-packages\pip\_vendor\urllib3\response.py", line 507, in read
~~ Omitted ~~
raise ReadTimeoutError(self._pool, None, "Read timed out.")
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
When I looked it up, "Read timed out" It seems that the reading was normally too long and an error was output.
Enter the following command
pip --default-timeout=100 install flickrapi
It's like changing the time until the timeout (default value) to 100 seconds ...?
It worked: relaxed:
Recommended Posts