- I encountered several issues getting VSCode + Azure Functions + Python to work properly.
- I was stuck in an error loop where the Azure Function Core Tools couldn’t find Python and ran into build errors like
"property is null"
. - After much trial and error, I found that upgrading the Core Tools wasn't the solution.
- Instead, a complete uninstall and reinstall worked at the target version of Azure Function Core Tools worked.
- Below are the consolidated steps I followed to set up a working Azure Function with local debugging.
This file contains hidden or 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
#REQUIRES -Version 2.0 | |
<# | |
.SYNOPSIS | |
Geth build script for Windows | |
.DESCRIPTION | |
A Powershell script to install dependencies for Windows and build go-ethereum binaries. | |
Make sure to run `Set-ExecutionPolicy RemoteSigned` in an Adminisrative Powershell window first. | |
.NOTES | |
File Name : geth-posh-install.ps1 | |
Author : Taylor Gerring ([email protected]) |