How to solve the timeout during pip operation in Linux

How to solve the timeout during pip operation in Linux

How to solve the timeout problem when pip is used in Linux instances

pip is one of the most popular Python package management tools. Many Alibaba Cloud users use pip to update system sources. Alibaba Cloud's pip source addresses are as follows:

(Default) Public network: mirrors.aliyun.com

Private network VPC intranet: mirrors.cloud.aliyuncs.com

Classic network intranet: mirrors.aliyuncs.com

Description of the phenomenon

Pip requests for Linux instances occasionally time out or fail. Currently, the affected public images are:

CentOS

Debian

Ubuntu

SUSE

OpenSUSE

Aliyun Linux

Cause Analysis

The default access address for pip requests is mirrors.aliyun.com, and the instance accessing this address must be able to access the public network. When your instance is not assigned a public IP, a pip request timeout failure may occur.

Workaround

You can use any of the following methods to resolve the issue.

Method 1

Assign a public IP address to your instance, that is, bind an elastic public IP address (EIP) to the instance. Prepaid instances can also reallocate public IP addresses through upgrading or downgrading.

Method 2

If there is a delay in pip response, you can run the script fix_pypi.sh in the ECS instance and then retry the pip operation.

Remote connection instance.

Run wget http://image-offline.oss-cn-hangzhou.aliyuncs.com/fix/fix_pypi.sh to obtain the file.

Run the script:

VPC instance: Run bash fix_pypi.sh "mirrors.cloud.aliyuncs.com".

Classic network instance: Run bash fix_pypi.sh "mirrors.aliyuncs.com".

Retry the pip operation.

The following is the script content of fix_pypi.sh:

#!/bin/bash
function config_pip() {
  pypi_source=$1
  if [[ ! -f ~/.pydistutils.cfg ]]; then
cat > ~/.pydistutils.cfg << EOF
[easy_install]
index-url=http://$pypi_source/pypi/simple/
EOF
  else
    sed -i "s#index-url.*#index-url=http://$pypi_source/pypi/simple/#" ~/.pydistutils.cfg
  fi
  if [[ ! -f ~/.pip/pip.conf ]]; then
  mkdir -p ~/.pip
cat > ~/.pip/pip.conf << EOF
[global]
index-url=http://$pypi_source/pypi/simple/
[install]
trusted-host=$pypi_source
EOF
  else
    sed -i "s#index-url.*#index-url=http://$pypi_source/pypi/simple/#" ~/.pip/pip.conf
    sed -i "s#trusted-host.*#trusted-host=$pypi_source#" ~/.pip/pip.conf
  fi
}
config_pip $1

The above is all the content and knowledge points of this article. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the timeout problem when installing docker-compose with PIP
  • 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
  • Solution to timeout problem when installing Python package with PIP

<<:  How to create a MySQL database (de1) using commands

>>:  Mini Program implements list countdown function

Recommend

Application of Hadoop counters and data cleaning

Data cleaning (ETL) Before running the core busin...

How to set up Spring Boot using Docker layered packaging

The Spring Boot project uses docker containers, j...

Detailed explanation of incompatible changes in rendering functions in Vue3

Table of contents Rendering API changes Render fu...

How to set up the terminal to run applications after Ubuntu starts

1. Enter start in the menu bar and click startup ...

MySQL 5.7.17 installation graphic tutorial (windows)

I recently started learning database, and I feel ...

How to modify the length limit of group_concat in Mysql

In MySQL, there is a function called "group_...

Example of how to exit the loop in Array.forEach in js

Table of contents forEach() Method How to jump ou...

Detailed explanation of how two Node.js processes communicate

Table of contents Preface Communication between t...

Sample code for using CSS to write a textured gradient background image

The page length in the project is about 2000px or...

jQuery to achieve sliding stairs effect

This article shares the specific code of jQuery t...

Difference between querySelector and getElementById methods in JS

Table of contents 1. Overview 1.1 Usage of queryS...

Example code for implementing div concave corner style with css

In normal development, we usually use convex roun...

React.js framework Redux basic case detailed explanation

react.js framework Redux https://github.com/react...

Solution to the garbled code problem in MySQL 5.x

MySQL is a commonly used open source database sof...