Fundamentals Research Data Management FAIR Data Principles Metadata Ontologies Data Sharing Data Publications Data Management Plan Version Control & Git Public Data Repositories Persistent Identifiers Implementation within DataPLANT Annotated Research Context User Journey ARC Commander QuickStart QuickStart (experts) Swate QuickStart Walk-through Best Practices For Data Annotation DataHUB DataPLAN ARC Commander Manual Setup Installing Dependencies Configure Git Installing the ARC Commander Windows MacOS Linux DataHUB Access Before we start Central Functions Initialize Clone Connect Synchronize Configure Branch ISA Metadata Functions ISA Metadata Investigation Study Assay Update Export Swate Manual Setup Installing Swate Browser Desktop, via installer (beta-stage) Desktop, manually (recommended) MacOS Organization-wide Core Features Annotation tables Building blocks Building Block Types Adding a Building Block Using Units with Building Blocks Filling cells with ontology terms Advanced Term Search Templates Contribute Templates File Picker Expert Features ISA-JSON Frequently Asked Questions Teaching Materials DataPLANT Overview Big Picture ARC structure ARC Demo

Installing the ARC Commander - Linux

last updated at 2022-12-20
  1. Download the latest ARC Commander release

    wget https://github.com/nfdi4plants/arcCommander/releases/download/v0.4.0-linux.x64/arc
  2. Make it executable

    chmod u+x arc
  3. Move to suitable place (e.g. in your home directory or to /home/bin/ to make it accessible for all users)

    if ! [ -d "$HOME/bin" ]; then mkdir "$HOME/bin"; fi # If it does not exist, create a folder `bin` in your home directory. mv arc $HOME/bin/ # move executable to that folder
  4. You might have to start a fresh terminal or source ~/.profile

  5. Test that ARC Commander is properly installed

    arc --version # check the current version

You should see the following or similar message:

Start processing parameterless command.
Start Arc Version
v0.4.0 Done processing command.

💡 A global config file will be created the first time you use the ARC Commander in the folder ~/.config/DataPLANT/ArcCommander/

✏️ Edit this page