Skip to content

Instantly share code, notes, and snippets.

@rnrbarbosa
Created February 27, 2024 23:32
Show Gist options
  • Save rnrbarbosa/dbf7da1d5a5d50363b499e74311e3b5a to your computer and use it in GitHub Desktop.
Save rnrbarbosa/dbf7da1d5a5d50363b499e74311e3b5a to your computer and use it in GitHub Desktop.
Bicep CLI Installation
# Fetch the latest Bicep CLI binary
curl -Lo bicep.bin https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
# Mark it as executable
chmod +x ./bicep.bin
# Add bicep to your PATH (requires admin)
sudo mv ./bicep.bin /usr/local/bin/bicep
# Verify you can now access the 'bicep' command
bicep --help
# Done!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment