Merge branch 'main' from workbench2.git
[arvados.git] / doc / sdk / python / sdk-python.html.textile.liquid
index 9494655325a14e1fd583772c347830efee2aa88c..fd1ff36c5ed9e2ea89443c9d9f21973f181b3f80 100644 (file)
@@ -22,9 +22,9 @@ To use the Python SDK elsewhere, you can install it "from an Arvados distributio
 As of Arvados 2.2, the Python SDK requires Python 3.6+.  The last version to support Python 2.7 is Arvados 2.0.4.
 {% include 'notebox_end' %}
 
-h2(#package-install). Option 1: Install from a distribution package
+h2(#package-install). Install from a distribution package
 
-This installation method is recommended to make the CLI tools available system-wide. It can coexist with the installation method described in option 2, below.
+This installation method is recommended to make the CLI tools available system-wide. It can coexist with the pip installation method described below.
 
 First, configure the "Arvados package repositories":../../install/packages.html
 
@@ -65,15 +65,16 @@ Type "help", "copyright", "credits" or "license" for more information.
 
 After you have successfully tested your installation, proceed to the the "API client overview":api-client.html and "cookbook":cookbook.html to learn how to use the SDK.
 
-h2(#pip-install). Option 2: Install with pip
+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:
 
-<pre>
-$ apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl-dev
-</pre>
+<notextile>
+<pre><code># <span class="userinput">apt install git build-essential python3-dev libcurl4-openssl-dev libssl-dev</span>
+</code></pre>
+</notextile>
 
 Run @python3 -m pip install arvados-python-client@ in an appropriate installation environment, such as a @virtualenv@.