Installation
Azure DevOps
-
Visit the Epi CLI Task page on Azure Marketplace.
-
Click Get it free and add it to your organization.
-
Include the Epi CLI task in your pipeline:
steps: - task: EpiCli@1 -
Verify the installation by running:
steps: - script: epi -h
GitHub
-
Add the Epi CLI action to your workflow:
steps: - uses: tuyen-at-work/epi-cli-action@master -
Verify the installation by running:
steps: - run: epi -h
Local Installation
MacOS and Linux
Linux users — The
unzippackage is required to install Epi CLI. Usesudo apt install unzipto installunzippackage. Kernel version 5.6 or higher is strongly recommended, but the minimum is 5.1. Useuname -rto check Kernel version.
curl -fsSL https://cli.eshn.dev/install.sh | bash # for macOS, Linux, and WSL
Windows
To install, paste this into a terminal:
powershell -c "irm cli.eshn.dev/install.ps1 | iex"