清理 conda 环境 - Amazon SageMaker

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

清理 conda 环境

清理未使用的 conda 环境可以帮助释放磁盘空间并提高性能。使用以下模板清理 conda 环境:

# list your environments to select an environment to clean conda info --envs # or conda info -e # once you've selected your environment to purge conda remove --name test-env --all # run conda environment list to ensure the target environment is purged conda info --envs # or conda info -e