X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/890072727ff9c7f2cdb1864d7170fb74e0247af5..204419e149d2b6b19b3bc2965e1c524b7abd5881:/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 new file mode 100644 index 0000000000..ff19428a66 --- /dev/null +++ b/doc/sdk/cli/install.html.textile.liquid @@ -0,0 +1,42 @@ +--- +layout: default +navsection: sdk +navmenu: CLI +title: "Installation" + +... + +If you are logged in to an Arvados VM, the @arv@ tool should be installed. + +To use @arv@ elsewhere, 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 + +Make sure you have "Ruby and bundler":/install/install-manual-prerequisites-ruby.html installed. + +Install curl libraries with your system's package manager. For example, on Debian or Ubuntu: + + +
+$ sudo apt-get install libcurl3 libcurl3-gnutls libcurl4-openssl-dev
+
+
+ +h4. Option 1: install with RubyGems + + +
+$ sudo gem install arvados-cli
+
+
+ +h4. 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 gem install arvados-cli-*.gem
+
+