For conda yml files one can define python dependencies from github using pip as
name: sample_env
channels:
dependencies:
- python=2.7
- pip:
- git+https://github.com/my/repository
Is there a way to do this similarly (e.g. with devtools) for R packages using something like
name: sample_env
channels:
dependencies:
- R=3.6
- devtools:
- git+https://github.com/my/repository