Merge branch '21504-arv-mount-reference'
[arvados.git] / doc / sdk / cli / install.html.textile.liquid
index df5507702443103be54c9db56122404c9de9b05b..e0d50b874b9251ea3074e31a3f91538bb282f4ab 100644 (file)
@@ -1,40 +1,32 @@
 ---
 layout: default
 navsection: sdk
-navmenu: CLI
+navmenu: Command line tools (CLI SDK)
 title: "Installation"
-
 ...
+{% comment %}
+Copyright (C) The Arvados Authors. All rights reserved.
 
-To use the @arv@ command, you can either install the @arvados-cli@ gem via RubyGems or build and install the package from source.
-
-h4. Prerequisites: Ruby >= 2.1.0 and curl libraries
+SPDX-License-Identifier: CC-BY-SA-3.0
+{% endcomment %}
 
-Make sure you have "Ruby and bundler":{{site.baseurl}}/install/install-manual-prerequisites-ruby.html installed.
+Arvados CLI tools are written in Ruby and Python.  To use the @arv@ command, you can either install the @arvados-cli@ gem via RubyGems or build and install the package from source.  The @arv@ command also relies on other Arvados tools.  To get those, install the @arvados-python-client@ and @arvados-cwl-runner@ packages, either from PyPI or source.
 
-Install curl libraries with your system's package manager. For example, on Debian or Ubuntu:
+h2. Prerequisites
 
-<notextile>
-<pre>
-$ <code class="userinput">sudo apt-get install libcurl3 libcurl3-gnutls libcurl4-openssl-dev</code>
-</pre>
-</notextile>
+# "Install Ruby":../../install/ruby.html
+# "Install the Python SDK":../python/sdk-python.html
 
-h4. Option 1: install with RubyGems
+The SDK uses @curl@ which depends on the @libcurl@ C library.  To build the module you may have to install additional packages.  On Debian 10 this is:
 
-<notextile>
 <pre>
-$ <code class="userinput">sudo gem install arvados-cli</code>
+$ apt-get install build-essential libcurl4-openssl-dev
 </pre>
-</notextile>
 
-h4. Option 2: build and install from source
+h2. Install from RubyGems
 
 <notextile>
 <pre>
-$ <code class="userinput">git clone https://github.com/curoverse/arvados.git</code>
-$ <code class="userinput">cd arvados/sdk/cli</code>
-$ <code class="userinput">gem build arvados-cli.gemspec</code>
-$ <code class="userinput">sudo gem install arvados-cli-*.gem</code>
+# <code class="userinput">gem install arvados-cli</code>
 </pre>
 </notextile>