Python needs to install a variety of modules often, and Pip is a very powerful module installation tool, with the PIP download source in foreign countries, resulting in a slow download speed, so we'd better be the use of the PIP source replacement to the domestic download source can improve development efficiency
Linux Environment ,
CD ~ Switch to the home folder first;
Ls-a See if there is a. pip file, no words created
mkdir. PIP Create. Pip folder
CD. Pip into the. Pip folder
Touch pip.conf Create a pip.conf file
Add the following in the pip.conf file, you can also use Vim to manually open the copy and paste
[Global] Index-url = https://pypi.tuna.tsinghua.edu.cn/simple
Windows environment,
Create a PIP directory directly in user/personal directory under C drive, new file Pip.ini, c/user/personal/pip/pip.ini
[Global] Index-url = https://pypi.tuna.tsinghua.edu.cn/simple
Update the PIP source to increase the way Python downloads the installation package (window and Linux)