Solution to the timeout problem when installing docker-compose with PIP

Solution to the timeout problem when installing docker-compose with PIP

1: Installation command

pip install docker-compose

Exception information

socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/pip/_internal/cli/base_command.py", line 188, in _main
status = self.run(options, args)
File "/usr/local/lib/python3.6/site-packages/pip/_internal/cli/req_command.py", line 185, in wrapper
return func(self, options, args)
File "/usr/local/lib/python3.6/site-packages/pip/_internal/commands/install.py", line 333, in run
reqs, check_supported_wheels=not options.target_dir
File "/usr/local/lib/python3.6/site-packages/pip/_internal/resolution/legacy/resolver.py", line 179, in resolve
discovered_reqs.extend(self._resolve_one(requirement_set, req))
File "/usr/local/lib/python3.6/site-packages/pip/_internal/resolution/legacy/resolver.py", line 362, in _resolve_one
abstract_dist = self._get_abstract_dist_for(req_to_install)
File "/usr/local/lib/python3.6/site-packages/pip/_internal/resolution/legacy/resolver.py", line 314, in _get_abstract_dist_for
abstract_dist = self.preparer.prepare_linked_requirement(req)
File "/usr/local/lib/python3.6/site-packages/pip/_internal/operations/prepare.py", line 469, in prepare_linked_requirement
hashes=hashes,
File "/usr/local/lib/python3.6/site-packages/pip/_internal/operations/prepare.py", line 259, in unpack_url
hashes=hashes,
File "/usr/local/lib/python3.6/site-packages/pip/_internal/operations/prepare.py", line 130, in get_http_url
link, downloader, temp_dir.path, hashes
File "/usr/local/lib/python3.6/site-packages/pip/_internal/operations/prepare.py", line 281, in _download_http_url
for chunk in download.chunks:
File "/usr/local/lib/python3.6/site-packages/pip/_internal/cli/progress_bars.py", line 166, in iter
for x in it:
File "/usr/local/lib/python3.6/site-packages/pip/_internal/network/utils.py", line 39, in response_chunks
decode_content=False,
File "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/response.py", line 564, in stream
data = self.read(amt=amt, decode_content=decode_content)
File "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/response.py", line 529, in read
raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
File "/usr/lib64/python3.6/contextlib.py", line 99, in __exit__
self.gen.throw(type, value, traceback)
File "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/response.py", line 430, in _error_catcher
raise ReadTimeoutError(self._pool, None, "Read timed out.")
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

Some netizens suggested adding a timeout, but it didn't solve my problem.

pip --default-timeout=100 install docker-compose

This is probably because the download timed out because there was no VPN. So you need to modify the source of pip

Following the online examples, I temporarily modified the pip source and executed the installation command again, but it did not solve my problem.

[root@localhost bin]# pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple/

Later I saw another blog. This method solved my problem. The modification source was referenced from the blog https://blog.csdn.net/h106140873/article/details/103858931.

1: Create a pip folder in the root directory (I am using the root user)

mkdir ~/.pip

2: Create a pip.conf file in the .pip directory

touch pip.conf

3: Edit the pip.conf file and add the following two lines

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

Execute the pip --default-timeout=100 install docker-compose command again and the installation is successful. And the download speed is very fast

Note: Some domestic images of pip

Alibaba Cloud http://mirrors.aliyun.com/pypi/simple/
University of Science and Technology of China https://pypi.mirrors.ustc.edu.cn/simple/
Douban (douban) http://pypi.douban.com/simple/
Tsinghua University https://pypi.tuna.tsinghua.edu.cn/simple/
University of Science and Technology of China http://pypi.mirrors.ustc.edu.cn/simple/

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Python pip usage timeout problem solution
  • Detailed explanation of the solution to slow, timeout, and failure of installing third-party libraries (toolkits) using pip in Python
  • How to solve the timeout during pip operation in Linux
  • Solution to timeout problem when installing Python package with PIP

<<:  vue+node+socket io realizes multi-person interaction and releases the entire process

>>:  Realize breadcrumb function based on vue-router's matched

Recommend

Example of how to configure cross-domain failure repair in nginx

Nginx cross-domain configuration does not take ef...

Nginx learning how to build a file hotlink protection service example

Preface Everyone knows that many sites now charge...

Things to note when migrating MySQL to 8.0 (summary)

Password Mode PDO::__construct(): The server requ...

Use a table to adjust the format of the form controls to make them look better

Because I want to write a web page myself, I am al...

Solution to invalid Nginx cross-domain setting Access-Control-Allow-Origin

nginx version 1.11.3 Using the following configur...

Example of how to implement keepalived+nginx high availability

1. Introduction to keepalived Keepalived was orig...

The corresponding attributes and usage of XHTML tags in CSS

When I first started designing web pages using XH...

Summary of commonly used tags in HTML (must read)

Content Detail Tags: <h1>~<h6>Title T...

Example of how to upload a Docker image to a private repository

The image can be easily pushed directly to the Do...

MySQL Packet for query is too large problem and solution

Problem description: Error message: Caused by: co...

Detailed explanation of vite2.0 configuration learning (typescript version)

introduce You Yuxi’s original words. vite is simi...

How to define input type=file style

Why beautify the file control? Just imagine that a...

CSS controls the spacing between words through the letter-spacing property

letter-spacing property : Increase or decrease th...