From 7da1ea409e4327a52dcf634ff51ffb6b596624fc Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Mon, 10 Jul 2023 11:50:56 -0400 Subject: [PATCH] 20684: Modernize pycurl dependency discussion These instructions should be good for Debian 10+ and I'm assuming corresponding Ubuntu too. * Update libssl package name * Clarify the command is good for multiple distros * Prefer apt over apt-get Arvados-DCO-1.1-Signed-off-by: Brett Smith --- doc/sdk/python/arvados-cwl-runner.html.textile.liquid | 4 ++-- doc/sdk/python/arvados-fuse.html.textile.liquid | 7 ++++++- doc/sdk/python/sdk-python.html.textile.liquid | 9 +++++---- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/doc/sdk/python/arvados-cwl-runner.html.textile.liquid b/doc/sdk/python/arvados-cwl-runner.html.textile.liquid index 284bb210e9..237721ac12 100644 --- a/doc/sdk/python/arvados-cwl-runner.html.textile.liquid +++ b/doc/sdk/python/arvados-cwl-runner.html.textile.liquid @@ -32,10 +32,10 @@ Run @pip install arvados-cwl-runner@ in an appropriate installation environment, Note: -The CWL Runner uses @pycurl@ which depends on the @libcurl@ C library. To build the module you may have to first install additional packages. On Debian 10 this is: +The CWL Runner uses @pycurl@ which depends on the @libcurl@ C library. To build the module you may have to first install additional packages. On Debian-based distributions you can install them by running: -
# apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl1.0-dev
+
# apt install git build-essential python3-dev libcurl4-openssl-dev libssl-dev
 
diff --git a/doc/sdk/python/arvados-fuse.html.textile.liquid b/doc/sdk/python/arvados-fuse.html.textile.liquid index 04dca2c849..8b71c7d692 100644 --- a/doc/sdk/python/arvados-fuse.html.textile.liquid +++ b/doc/sdk/python/arvados-fuse.html.textile.liquid @@ -32,7 +32,12 @@ Run @pip install arvados_fuse@ in an appropriate installation environment, such Note: -The SDK uses @pycurl@ which depends on the @libcurl@ C library. To build the module you may have to first install additional packages. On Debian 10 this is: +The FUSE driver uses @pycurl@ which depends on the @libcurl@ C library. To build the module you may have to first install additional packages. On Debian-based distributions you can install them by running: + + +
# apt install git build-essential python3-dev libcurl4-openssl-dev libssl-dev
+
+
 $ apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl-dev python3-llfuse
diff --git a/doc/sdk/python/sdk-python.html.textile.liquid b/doc/sdk/python/sdk-python.html.textile.liquid
index 4639306922..fd1ff36c5e 100644
--- a/doc/sdk/python/sdk-python.html.textile.liquid
+++ b/doc/sdk/python/sdk-python.html.textile.liquid
@@ -69,11 +69,12 @@ h2(#pip-install). Install from PyPI with pip
 
 This installation method is recommended to use the SDK in your own Python programs. If installed into a @virtualenv@, it can coexist with the system-wide installation method from a distribution package.
 
-The SDK uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian 10 you can do this by running:
+Note the Python SDK uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian-based distributions you can install them by running:
 
-
-$ apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl-dev
-
+ +
# apt install git build-essential python3-dev libcurl4-openssl-dev libssl-dev
+
+
Run @python3 -m pip install arvados-python-client@ in an appropriate installation environment, such as a @virtualenv@. -- 2.30.2