While our Python SDK now supports Python 3.4+, our FUSE driver does not yet. On
[arvados.git] / doc / sdk / python / arvados-fuse.html.textile.liquid
index 77852fddd642b453b04479a9fc17dfaa1d8306d8..b900dc932ffcb105a217686dbeac67aecee9e23b 100644 (file)
@@ -19,7 +19,7 @@ If you are logged in to an Arvados VM, the @arv-mount@ utility should already be
 To use the FUSE driver elsewhere, you can install from a distribution package, PyPI, or source.
 
 {% include 'notebox_begin' %}
-The Python SDK requires Python 2.7.
+The Arvados FUSE driver requires Python 2.7
 {% include 'notebox_end' %}
 
 h4. Option 1: Install from distribution packages
@@ -46,7 +46,7 @@ On Debian-based systems:
 
 h4. Option 2: Install with pip
 
-Run @pip-2.7 install arvados_fuse@ in an appropriate installation environment, such as a virtualenv.
+Run @pip install arvados_fuse@ in an appropriate installation environment, such as a virtualenv.
 
 h4. Option 3: Install from source
 
@@ -55,10 +55,10 @@ Install the @python-setuptools@ package from your distribution.  Then run the fo
 <notextile>
 <pre><code>~$ <span class="userinput">git clone https://github.com/curoverse/arvados.git</span>
 ~$ <span class="userinput">cd arvados/services/fuse</span>
-~/arvados/services/fuse$ <span class="userinput">python2.7 setup.py install</span>
+~/arvados/services/fuse$ <span class="userinput">python setup.py install</span>
 </code></pre>
 </notextile>
 
 h3. Usage
 
-Please refer to the "Mounting Keep as a filesystem":{{site.baseurl}}/user/tutorials/tutorial-keep-mount.html tutorial for more information.
\ No newline at end of file
+Please refer to the "Accessing Keep from GNU/Linux":{{site.baseurl}}/user/tutorials/tutorial-keep-mount-gnu-linux.html tutorial for more information.