When we are using pip install command to install python packages, we may get this error: Cannot uninstall ‘PyYAML’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. In this tutorial, we will introduce how to fix this error.
This error looks like:
You may plan to use pip uninstall command to uninstall PyYAML, however, you will fail to fix this problem.
How to fix this problem?
Because PyYAML is not installed by pip, we can not uninstall it using pip uninstall.
We can ignore it when using pip install. For example:
pip install asteroid --ignore-installed PyYAML
We can use –ignore-installed argument when using pip install.
Then we can find this error is disappeared.