Uninstalling MLDL frameworks

Find information about uninstalling machine learning and deep learning (MLDL frameworks.

The MLDL framework packages can be uninstalled individually, or you can uninstall all of the MLDL packages at the same time.

If the frameworks are installed into a separate conda environment, all of the frameworks can be removed by simply deleting the environment:

conda env remove -n <environment name>

All of the frameworks can also be removed by removing this list of packages:

conda remove powerai-license
conda remove cudatoolkit

Individual frameworks (and any packages that depend on them) can be removed by removing the individual package:

conda remove <package name>
Important: This command removes the specified packages and any packages that depend on any of the specified packages. If you want to skip this dependency checking and remove just the requested packages, add the --force option. However, this may break your environment, so use this option with caution.