using_conda {ami} | R Documentation |
Determine whether Conda environment is being used
using_conda(env = NULL)
env |
Optional environment name to compare against |
A logical value
# Check if Conda is being used (regardless of environment name)
using_conda()
# Check if the 'dev' Conda environment is being used
using_conda(env = "dev")