Skip to content

Instantly share code, notes, and snippets.

@r3xakead0
Last active February 19, 2024 01:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r3xakead0/d5dd08c6cd6dfe4962e30a2598331d00 to your computer and use it in GitHub Desktop.
Save r3xakead0/d5dd08c6cd6dfe4962e30a2598331d00 to your computer and use it in GitHub Desktop.
Install Azure Functions Core Tools on Linux Ubuntu
# Download and install the Microsoft signing key
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
# Add to software repository
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-$(lsb_release -cs)-prod $(lsb_release -cs) main" > /etc/apt/sources.list.d/dotnetdev.list'
# Update repository information and install package
sudo apt-get update
sudo apt-get install azure-functions-core-tools-4 -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment