5 title: Arvados CWL Runner
8 Copyright (C) The Arvados Authors. All rights reserved.
10 SPDX-License-Identifier: CC-BY-SA-3.0
13 The Arvados FUSE driver is a Python utility that allows you to see the Keep service as a normal filesystem, so that data can be accessed using standard tools. This driver requires the Python SDK installed in order to access Arvados services.
17 If you are logged in to a managed Arvados VM, the @arv-mount@ utility should already be installed.
19 To use the FUSE driver elsewhere, you can install from a distribution package, or PyPI.
21 h2. Option 1: Install from distribution packages
23 First, "add the appropriate package repository for your distribution":{{ site.baseurl }}/install/packages.html
25 {% assign arvados_component = 'python3-arvados-cwl-runner' %}
27 {% include 'install_packages' %}
29 h2. Option 2: Install with pip
31 Run @pip install arvados-cwl-runner@ in an appropriate installation environment, such as a virtualenv.
35 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:
38 $ apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl1.0-dev python3-llfuse
41 h3. Check Docker access
43 In order to pull and upload Docker images, @arvados-cwl-runner@ requires access to Docker. You do not need Docker if the Docker images you intend to use are already available in Arvados.
45 You can determine if you have access to Docker by running @docker version@:
48 <pre><code>~$ <span class="userinput">docker version</span>
54 Built: Fri Nov 20 12:59:02 UTC 2015
62 Built: Fri Nov 20 12:59:02 UTC 2015
67 If this returns an error, contact the sysadmin of your cluster for assistance.
71 Please refer to the "Accessing Keep from GNU/Linux":{{site.baseurl}}/user/tutorials/tutorial-keep-mount-gnu-linux.html tutorial for more information.