According to the gh instructions, we can install the gh
cli via conda using: conda install gh --channel conda-forge
. I wonder if there is way to include it in the environment.yml
file? So that I can auto install the packages while setting up the conda environment.
name: conda_env
channels:
- defaults
dependencies:
- python>=3.8
- pip>=20.1.1
I don't know where to add gh
in the environment.yml
file. Clearly, it is not a pip package.