Skip to content

Instantly share code, notes, and snippets.

@akhilnarang
Last active December 24, 2025 10:29
Show Gist options
  • Select an option

  • Save akhilnarang/5cb434a0e938af427e095e92f70febbc to your computer and use it in GitHub Desktop.

Select an option

Save akhilnarang/5cb434a0e938af427e095e92f70febbc to your computer and use it in GitHub Desktop.
Migrating to python 3.14 / node 24

Python

  • Uninstall previous version if on macOS: brew uninstall python
  • Install uv
  • It'll prompt you to reload your shell so that updated PATH takes effect
  • Run uv python install 3.14
  • You can now use it with python3.14
    • bench migrate-env python3.14
    • bench init --python python3.14

NodeJS

  • Uninstall previous version if on macOS: brew uninstall node
  • Install nvm
  • It'll prompt you to reload your shell so that updated PATH takes effect
  • Run nvm install 24
  • You can now use it with node
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment