Although I haven't used Python extensively before, I was glad to see support for conda in BBEdit 14. The Standard Ebooks project uses Python extensively for their toolset and having an isolated environment within BBEdit should make using it much easier.
Yet, after installing miniconda, running the init, and and creating an environment, I cannot get it to appear in the `#!` menu.
- `brew install --cask miniconda`
- `conda init "$(basename "${SHELL}")"`
- `conda config --add channels conda-forge`
- `conda create -n standardebooks`
- `conda activate standardebooks`
- `conda install -c conda-forge standardebooks`
Did I miss a step?