'func' is not recognized as an internal or external command, operable program or batch file

Viewed 25138

Keep getting the error

'func' is not recognized as an internal or external command, operable program or batch file.

Image of error

when entering func into the cmd command line, when following this tutorial
I have installed python (3.7.3) and all the correct extensions, so am confused as to why this issues is occuring.

Any help with this would be much appreciated.

2 Answers

I had this issue and the provided answer didn't solve my problem.

Steps I took to fix (Windows):

  1. Install Chocolately
  2. Run choco install azure-functions-core-tools
  3. Finally run func: %%%%%% %%%%%% @ %%%%%% @ @@ %%%%%% @@ @@@ %%%%%%%%%%% @@@ @@ %%%%%%%%%% @@ @@ %%%% @@ @@ %%% @@ @@ %% @@ %% %

EDIT

While the above did solve my problem, the underlying issue was that func was not on my path, so it was not being recognised as a command.

Related