So I created a virtual environment but forgot to activate it. I then ran pip install flask
thinking I was in the new virtualenv. This returned a denied permissions error, so I ran it again with sudo
in front. Shortly after, I realized what I had done. I did a quick search here and found this question. However, when I run sudo pip uninstall flask
(as suggested in that link) I get this back "Can't uninstall 'Flask'. No files were found to uninstall."
Did I actually install it system-wide? If so, why does it tell me this when I try to uninstall it, and how do I actually reverse this system-wide installation?
Thanks in advance