Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 1.04 KB

File metadata and controls

32 lines (19 loc) · 1.04 KB

How to install Azure Functions Core Tools on macOS

This document describes how to install Azure Functions Core Tools on macOS to minimize issues during the setup phase.

Azure Functions Core Tools information

Azure Functions Core Tools is a command-line tool for developing and testing Azure Functions locally.

The default command of Azure Functions Core Tools is func.

Install via Homebrew

Installing Azure Functions Core Tools via package manager Homebrew is the recommended way. Use the following bash commands:

brew tap azure/functions
brew install azure-functions-core-tools@4

If you have installed Azure Functions Core Tools v2.x or v3.x before, you can use this command to overwrite the symlink for func to point to the new entry point.

brew link --overwrite azure-functions-core-tools@4

Verify installation

Run the command func --version to verify the version the installed Azure Functions Core Tools.

Documentation

Official docs