Open
Description
pip cache remove
uses a pattern for the wheels filename and not the package name (as noted in #12954 (comment)):
pip cache remove pyfftw
WARNING: No matching packages for pattern "pyfftw"
does not work because the wheel name is pyFFTW-0.15.0-cp313-cp313-linux_x86_64.whl (whereas the package name is pyfftw).
One has to use
pip cache remove pyFFTW
It seems to me that pip cache remove pyfftw
should remove the wheels for the package pyfftw.
Originally posted by @paugier in #12954 (comment)