I have a file that I suspect was installed by pip. How can I find which package installed that file?
pip
In other words, I\'m looking for a command similar
You could try with
pip list | tail -n +3 | cut -d" " -f1 | xargs pip show -f | grep "filename"
Then search through the results looking for that file.