本文提供视频讲解,详细见地址:https://www.bilibili.com/video/BV1Qf4y1R74e
问题
最近有网友反馈通过npm安装serverless时超时(如以下截图),其实这是一个比较普遍的现象因为默认的镜像源存放在海外的服务器,如果是有一定工作经验的运维工程师或开发工程师应该可以很快的解决。
所以推荐这里更改为国内的镜像源,不同的包管理工具国内的互联网公司都有提供镜像,这里替换为国内的镜像源就可以实现秒下载(见以下截图)。
如何加速常用的包管理工具
这里以腾讯云SDK作为案例。(以下测试使用了CentOS7.7 64位系统)
PHP Composer
安装php和包管理工具Composer
yum install php
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
设置为中国大陆地区的云镜像源。
composer config -g repos.packagist composer https://mirrors.tencent.com/composer/
最后下载腾讯云的sdk
composer require tencentcloud/tencentcloud-sdk-php
Python的pip
腾讯云镜像中默认将配置文件中镜像源指向国内。
cat .pip/pip.conf
[global]
index-url = https://mirrors.tencent.com/pypi/simple/
[install]
use-mirrors =true
mirrors = https://mirrors.tencent.com/pypi/simple/
trusted-host = mirrors.tencent.com
Node.js 的npm
下载Node.js的包管理工具npm
yum install npm
设置中国大陆地区的云镜像源
npm config set registry https://mirrors.tencent.com/npm/
安装sdk
npm install tencentcloud-sdk-nodejs --save
Golang的get
设置golang的国内代理,下载海外镜像源。
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
下载腾讯云的sdk
go get -u github.com/tencentcloud/tencentcloud-sdk-go
也可以访问(golang.google.cn)这个域名是解析到国内的,https://golang.google.cn/dl/这个URL下载速度快一些。
Ruby的RubyGems
加载以下源地址
gem source -r https://rubygems.org/
gem source -a http://mirrors.cloud.tencent.com/rubygems/
Yum源的替换
腾讯云提供了不同操作系统发行版本的国内镜像源(腾讯自己的镜像地址),大家可以直接下载这些镜像源地址,并执行install.sh脚本。他会根据操作系统的具体发行版本来替换yum源地址。
wget -q http://mirrors.tencentyun.com/install/virts/basic_linux_install.tar.gz
tar -xvzf basic_linux_install.tar.gz
在操作系统上直接执行install.sh脚本,他会根据操作系统的发行版本进行安装默认repo(这里默认用的都是国内的镜像源)。
mac系统的brew源
腾讯云源
1.替换brew.git
cd "$(brew --repo)"
git remote set-url origin https://mirrors.tencent.com/homebrew/brew.git
2.替换homebrew-core.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.tencent.com/homebrew/homebrew-core.git
3.替换Homebrew Bottles源
#bash用户
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
#zsh用户
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
中科大源
1.替换brew.git
# 替换brew.git:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
2.替换homebrew-core.git
# 替换homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
3.替换Homebrew Bottles源
# 替换homebrew-cask.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-cask"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
# 应用生效
brew update
# 替换homebrew-bottles:
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
参考文章
腾讯云镜像源相关:https://cloud.tencent.com/document/product/213/8623?from=10680
python安装: https://www.runoob.com/w3cnote/python-pip-install-usage.html
腾讯云的sdk:https://cloud.tencent.com/document/sdk/PHP
扩展阅读:https://cloud.tencent.com/developer/article/1662816