Skip to content

Instantly share code, notes, and snippets.

View damien-johnston's full-sized avatar

Damien Johnston damien-johnston

View GitHub Profile
@damien-johnston
damien-johnston / instructions.md
Last active November 15, 2024 14:26
VSCode + Azure Functions + Python for Local Development and Debugging

Troubleshooting VSCode, Azure Functions, and Python Issues

  • 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.

#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])