--- layout: default navsection: installguide title: Install a shell server ... There is nothing inherently special about an Arvados shell server. It is just a GNU/Linux machine with Arvados utilites and SDKs installed. For optimal performance, the Arvados shell server should be on the same LAN as the Arvados cluster, but that is not required. h2. Install API tokens Please follow the "API token guide":../user/reference/api-tokens.html to get API tokens for your Arvados account and install them on your shell server. We will use those tokens to test the SDKs as we install them. h2. Install the Ruby SDK and utilities If you're using RVM:
~$ sudo /usr/local/rvm/bin/rvm-exec default gem install arvados-cli
If you're not using RVM:
~$ sudo gem install arvados-cli
h2. Install the Python SDK and utilities On Debian-based systems:
~$ sudo apt-get install python-arvados-python-client python-arvados-fuse
On Red Hat-based systems:
~$ sudo yum install python27-python-arvados-python-client python27-python-arvados-fuse
{% include 'note_python27_sc' %} h2. Update Git Config Configure git to use the ARVADOS_API_TOKEN environment variable to authenticate to arv-git-httpd. We use the @--system@ flag so it takes effect for all current and future user accounts. It does not affect git's behavior when connecting to other git servers.
~$ sudo git config --system 'credential.https://git.uuid_prefix.your.domain/.username' none
~$ sudo git config --system 'credential.https://git.uuid_prefix.your.domain/.helper' '!cred(){ cat >/dev/null; if [ "$1" = get ]; then echo password=$ARVADOS_API_TOKEN; fi; };cred'