X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9e3cf124be0a38ae835ab934077c8febf4e2daba..045e3127cb48845c7d988d01488c055f02ae2ec3:/doc/sdk/cli/install.html.textile.liquid diff --git a/doc/sdk/cli/install.html.textile.liquid b/doc/sdk/cli/install.html.textile.liquid index eff019a7fd..9657d236ad 100644 --- a/doc/sdk/cli/install.html.textile.liquid +++ b/doc/sdk/cli/install.html.textile.liquid @@ -3,58 +3,30 @@ layout: default navsection: sdk navmenu: CLI title: "Installation" - ... +{% comment %} +Copyright (C) The Arvados Authors. All rights reserved. -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, you can either install the @arvados-python-client@ and @arvados-cwl-runner@ from PyPi or install the packages from source. - -h3. Prerequisites: Ruby, Bundler, and curl libraries +SPDX-License-Identifier: CC-BY-SA-3.0 +{% endcomment %} -{% include 'install_ruby_and_bundler' %} +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 - -
-$ sudo apt-get install libcurl3 libcurl3-gnutls libcurl4-openssl-dev
-
-
+# "Install Ruby":../../install/ruby.html +# "Install the Python SDK":../python/sdk-python.html -h3. Option 1: Install from RubyGems and PyPi +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: -
-arvados/sdk/cli$ sudo -i gem install arvados-cli
+$ apt-get install build-essential libcurl4-openssl-dev
 
-
- -
-arvados/sdk/cli$ sudo -i pip install arvados-python-client arvados-cwl-runner
-
-
- -h3. Option 2: Build and install from source - - -
-$ git clone https://github.com/curoverse/arvados.git
-$ cd arvados/sdk/cli
-$ gem build arvados-cli.gemspec
-$ sudo -i gem install arvados-cli-*.gem
-
-
- - -
-$ cd arvados/sdk/python
-$ sudo -i python setup.py install
-
-
+h2. Install from RubyGems
-$ cd arvados/sdk/cwl
-$ sudo -i python setup.py install
+# gem install arvados-cli