Home Fundamentals Research Data Management FAIR Data Principles Metadata Ontologies Data Sharing Data Publications Data Management Plan Version Control & Git Public Data Repositories Persistent Identifiers Electronic Lab Notebooks (ELN) DataPLANT Implementations Annotated Research Context ARC specification ARC Commander Swate MetadataQuiz DataHUB DataPLAN Ontology Service Landscape ARC Commander Manual Setup Git Installation ARC Commander Installation Windows MacOS Linux ARC Commander DataHUB Access Before we start Central Functions Initialize Clone Connect Synchronize Configure Branch ISA Metadata Functions ISA Metadata Investigation Study Assay Update Export ARCitect Manual Installation - Windows Installation - macOS Installation - Linux QuickStart QuickStart - Videos ARCmanager Manual What is the ARCmanager? How to use the ARCmanager Swate Manual QuickStart QuickStart - Videos Annotation tables Building blocks Building Block Types Adding a Building Block Filling cells with ontology terms Advanced Term Search File Picker Templates Contribute Templates ISA-JSON DataHUB Manual Overview User Settings Generate a Personal Access Token (PAT) Projects Panel ARC Panel Forks Working with files ARC Settings ARC Wiki Groups Panel Create a new user group CQC Pipelines & validation Find and use ARC validation packages Data publications Passing Continuous Quality Control Submitting ARCs with ARChigator Track publication status Use your DOIs Guides ARC User Journey Create your ARC ARCitect QuickStart ARCitect QuickStart - Videos ARC Commander QuickStart ARC Commander QuickStart (Experts) Annotate Data in your ARC Annotation Principles ISA File Types Best Practices For Data Annotation Swate QuickStart Swate QuickStart - Videos Swate Walk-through Share your ARC Register at the DataHUB DataPLANT account Invite collaborators to your ARC Sharing ARCs via the DataHUB Work with your ARC Using ARCs with Galaxy Computational Workflows CWL Introduction CWL runner installation CWL Examples CWL Metadata Recommended ARC practices Syncing recommendation Keep files from syncing to the DataHUB Managing ARCs across locations Working with large data files Adding external data to the ARC ARCs in Enabling Platforms Publication to ARC Troubleshooting Git Troubleshooting & Tips Contribute Swate Templates Knowledge Base Teaching Materials Events 2023 Nov: CEPLAS PhD Module Oct: CSCS CEPLAS Start Your ARC Sept: MibiNet CEPLAS Start Your ARC July: RPTU Summer School on RDM July: Data Steward Circle May: CEPLAS Start Your ARC Series Start Your ARC Series - Videos Events 2024 TRR175 Becoming FAIR CEPLAS ARC Trainings – Spring 2024 MibiNet CEPLAS DataPLANT Tool-Workshops TRR175 Tutzing Retreat Frequently Asked Questions

Installing the ARC Commander - MacOS

last updated at 2024-01-25
  1. Open a Terminal (Applications → Utilities → Terminal)

  2. Copy/paste the following commands into your terminal and execute them to (a) download the latest ARC Commander release, (b) change permissions to make the ARC Commander executable and (c) move the ARC Commander program to a location from where it is executable via the terminal:

First, you need to verify if your machine is using an AMD / x86 processor or ARM processor.

uname -m

This command will return the processor type. If it returns x86_64 , your system is x86. If it returns arm64 , armv7l , or similar, it is ARM.

For AMD / x86 processors

curl -LO https://github.com/nfdi4plants/ARCCommander/releases/download/v1.0.0/arc_osx-x64 chmod a+x ./arc_osx-x64 mv ./arc_osx-x64 /usr/local/bin/arc

For ARM processors

curl -LO https://github.com/nfdi4plants/ARCCommander/releases/download/v1.0.0/arc_osx-arm64 chmod a+x ./arc_osx-arm64 mv ./arc_osx-arm64 /usr/local/bin/arc

⚠️ By moving the ARC commander binary to /usr/local/bin/ it also becomes available to other users on your machine.

  1. Run ARC Commander from the terminal by executing:
arc
  1. MacOS security note: On first execution, MacOS will not allow arc to be run. Instead it opens a pop-up:

"arc" cannot be opened because it is from an unidentified developer

  1. Open the Security Panel in system Preferences (Applications → System Preferences → "Security & Privacy") or by executing the following command in your terminal:
open "x-apple.systempreferences:com.apple.preference.security"

In the "General" tab click the bottom-right button "Allow Anyway" right next to

arc was blocked from use because it is not from an identified developer.

  1. Head back to the terminal and execute arc again. Another pop-up will ask you to confirm by clicking "Open".

  2. Check that arc is properly installed by executing

arc --version

You should see the following or similar message:

Start processing parameterless command.
Start Arc Version
v1.0.0
Done processing command.

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

Contribution Guide 📖
✏️ Edit this page