I recently decided to try to install tesseract onto my computer and ran pip3 install tesseract-ocr
.
It then started to download cython
which alerted me to the fact that tesseract-ocr
was not what I wanted, so I hit CTRL-C to cancel the command.
However, it appears that there is still a Cython folder inside my directories; pip did not clean up after the cancel. Also, I can't use pip uninstall cython
because it just tells me it hasn't been installed yet.
What can I do to get a clean removal of Cython?