A note on installing python with asdf
Posts for: #Tools
My Essentials Tools
Tools that I use over the years as a software developer
How to Install Specific Version of Brew Cask
A quick guide on how to install specific version of brew cask
How To Use Git Worktree To Checkout Multiple Branches At Once
Learn how to create and remove git worktree to simplify your PR workflow
PHP missing dependencies
I was having some issues with my PHP package installed through asdf yesterday. Something about missing libiconv and when I ran php -v it returns me this response:
No php executable found for php 8.2.0 To fix the issue, I followed this tips on Github issues
Install the optional dependencies:
$~ brew install gmp libsodium imagemagick Reinstall the possible missing dependencies. brew will just skipped any packages that I’ve already installed.