This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
from typing import List | |
def get_conda_envs() -> List[str]: | |
""" | |
Get a list of conda environments and return their names. | |
""" | |
# Execute the `conda env list` command and capture its output |