Created
February 27, 2024 23:32
-
-
Save rnrbarbosa/dbf7da1d5a5d50363b499e74311e3b5a to your computer and use it in GitHub Desktop.
Bicep CLI Installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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