Installing MauroContSysEdit.cli on macOS x64
Instructions for installing the MauroContSysEdit.cli command-line tool on macOS systems with Intel x64 processors.
Before installing MauroContSysEdit.cli on macOS x64, ensure you have:
- macOS 10.15 (Catalina) or later
- Administrator privileges for system-wide installation
- At least 100 MB of available disk space
- .NET 9 Runtime or SDK (or use the self-contained version)
- Xcode Command Line Tools (for building from source)
Intel-based Mac computers use the x64 architecture. For Apple Silicon Macs (M1, M2, M3), see the ARM64 installation guide.
-
Download or build the application
- Download the pre-built macOS x64 package from GitHub releases
- Build from source using the .NET SDK
-
For pre-built binary:
- Download MauroImportExport.Cli-osx-x64.tar.gz from the releases page
-
Extract the archive:
tar -xzf MauroImportExport.Cli-osx-x64.tar.gz -
Move to installation directory:
sudo mv MauroImportExport.Cli /usr/local/bin/ -
Make executable:
sudo chmod +x /usr/local/bin/MauroImportExport.Cli
-
For building from source:
-
Install .NET 9 SDK:
brew install dotnet-sdk(using Homebrew) -
Clone the repository:
git clone https://github.com/oughnic/Mauro-Edit.git -
Navigate to CLI directory:
cd Mauro-Edit/MauroImportExport.Cli -
Publish self-contained:
dotnet publish -c Release -r osx-x64 --self-contained true -
Copy to system path:
sudo cp bin/Release/net9.0/osx-x64/publish/MauroImportExport.Cli /usr/local/bin/
-
Install .NET 9 SDK:
-
Handle macOS security (Gatekeeper)
On first run, macOS may block the application. To allow:
- Open System Settings → Privacy & Security
- Click "Open Anyway" for MauroImportExport.Cli
-
Alternatively, remove the quarantine attribute:
sudo xattr -r -d com.apple.quarantine /usr/local/bin/MauroImportExport.Cli
-
Verify the installation:
MauroImportExport.Cli versionThe CLI version and plugin information should display. -
Optional: Create a shell alias for convenience
Add to your ~/.zshrc or ~/.bash_profile:
alias mauro-cli='MauroImportExport.Cli'Then reload:
source ~/.zshrc
MauroContSysEdit.cli is now installed on your macOS x64 system and available from any terminal.
Important:
Ensure /usr/local/bin is in your PATH environment variable. Check with: echo $PATH