From 576a9a1b5fe80396170915ea0e2264edfb1de05d Mon Sep 17 00:00:00 2001 From: diandian Date: Wed, 25 Sep 2024 15:24:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'Redis/redis=E9=9B=86?= =?UTF-8?q?=E7=BE=A4=E6=8A=80=E6=9C=AF.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Redis/redis集群技术.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Redis/redis集群技术.md b/Redis/redis集群技术.md index 46670aa..a4cddd0 100644 --- a/Redis/redis集群技术.md +++ b/Redis/redis集群技术.md @@ -9,6 +9,16 @@ #### 1.安装包 ```shell +yum -y install python3 python3-pip + +mkdir ~/.pip +vim ~/.pip/pip.conf +[global] +index-url=http://mirrors.aliyun.com/pypi/simple/ +[install] +trusted-host=mirrors.aliyun.com + + pip3 install redis ```