Antonio Hernández Blas

Results 4 comments of Antonio Hernández Blas

You can also find the answer in this interview, from `00:16:55` to `00:17:45` 🕒 :

Another Bash script, but using Exercism's API: ```bash #!/usr/bin/env bash set -e set -u export track="$1" curl \ --silent --fail \ "https://exercism.org/api/v2/tracks/$track/exercises" \ | sed 's/"slug":"/\n/g' \ | sed 's/",.*$//'...

Based on @untouchable comment I'm rewriting the `pyenv` function (defined by `pyenv init -`) to support MacPorts, so my _pyenv setup_ (`~/.bashrc`) is something like this: ```bash export PYENV_ROOT="$HOME/.pyenv" export...

Based on my understanding I would go with something like this: `PYTHON_BUILD_SKIP_HOMEBREW`, if set, will not search for libraries installed by Homebrew when it would normally will. `PYTHON_BUILD_USE_HOMEBREW`, if set,...