From f260cdbb37a28a831e79e44f0fbf7f1fb4bd352b Mon Sep 17 00:00:00 2001 From: David Date: Sat, 23 Mar 2024 17:24:29 +0000 Subject: [PATCH] Update setup_with_amazon_s3.md easy_install is deprecated since November 2019 https://setuptools.pypa.io/en/latest/history.html#v42-0-0 --- manual/deploy_pro/setup_with_amazon_s3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/deploy_pro/setup_with_amazon_s3.md b/manual/deploy_pro/setup_with_amazon_s3.md index 780c08b9..5c381638 100644 --- a/manual/deploy_pro/setup_with_amazon_s3.md +++ b/manual/deploy_pro/setup_with_amazon_s3.md @@ -8,10 +8,10 @@ To setup Seafile Professional Server with Amazon S3: - Install the python `boto` library. It's needed to access S3 service. ``` # Version 10.0 or earlier -sudo easy_install boto +sudo pip install boto # Since 11.0 version -sudo easy_install boto3 +sudo pip install boto3 ``` - Install and configure memcached or Redis. For best performance, Seafile requires enable memory cache for objects. We recommend to at least allocate 128MB memory for memcached or Redis.