I have messed up with my whole programming environment and I would like to delete /Users/Solal/Library/Caches/pip/
so I am sure not reinstall bad versions of package.
Is it safe to do so?
I have messed up with my whole programming environment and I would like to delete /Users/Solal/Library/Caches/pip/
so I am sure not reinstall bad versions of package.
Is it safe to do so?
It is safe to delete the user cache directory. It will simply cause pip
to re-download all packages from PyPI. Do try pip install --no-cache-dir ...
before you delete it to isolate your problem.
It is safe to delete it.
But it's better to close all applications to prevent any confusion of the programs accessing the cache.
so if you want to free up disk space, you can do it.