$ brew update
$ brew install pyenv
$ pyenv install -l
$ pyenv install miniconda3-latest
$ cd /path/to
$ pyenv local miniconda3-latest
$ conda create -n foo anaconda
$ source /usr/local/var/pyenv/versions/miniconda3-latest/envs/foo/bin/activate foo
$ conda-env remove -n foo
Short and straight to the point, thanks!