How Can I Use a Pypi Image Source (x86_64 or Arm) Provided by HUAWEI CLOUD?
Scenarios
When updating the OS or software of an ECS, you can access the Internet through the ECS and use an external Pypi image source. However, if your ECS cannot access the Internet, or the external Pypi image source cannot provide services stably, you can use the Pypi image source provided by HUAWEI CLOUD.
Restrictions and Limitations
- This section applies only to the following regions: CN North-Beijing1, CN North-Beijing4, CN East-Shanghai1, CN East-Shanghai2, CN South-Guangzhou, and AP-Hong Kong.
- Make sure that the intranet DNS server provided by HUAWEI CLOUD has been configured.
For instructions about how to obtain an intranet DNS server, see What Are the Private DNS Server Addresses Provided by the DNS Service?
For instructions about how to configure a DNS server, see Configuring DNS.
- The operations described in this section apply to both x86_64 and Arm (Kunpeng) ECSs.
Procedure
- Log in to the ECS as user root or Administrator.
- Run the following command to check whether pip has been installed on the target ECS:
If the system displays the message "-bash: pip: command not found", pip has not been installed.
- Run the following command to obtain the pip installation package:
- Run the following command to decompress the pip.tar.gz file:
tar -zxvf pip.tar.gz
- Run the following commands to install pip:
python setup.py install
- Run the following command to switch to the home directory of the current user and check whether the pip.conf directory and files are available:
cd ~/
If yes, go to step 8.
If no, go to step 7.
The files of the Linux ECS are stored in the ~/.pip/pip.conf directory, and the files of the Windows ECS are stored in the %HOMEPATH%\pip\pip.ini directory.
- Run the following commands to create the pip.conf configuration file:
mkdir ~/.pip
touch ~/.pip/pip.conf
- Modify the pip.conf configuration file as follows:
[global] index-url = http://mirrors.myhuaweicloud.com/pypi/web/simple format = columns [install] trusted-host=mirrors.myhuaweicloud.com
- If certain packages are unavailable, this issue may be caused by in-progress data synchronization. In such a case, try again several hours later.
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.