I have a conda (4.7.12) environment called py36 (python3.6). When running conda list -n py36, it shows that I have pyqt5 (5.15.0) installed:
I want to uninstall this package. However, when I run pip uninstall pyqt5 or pip uninstall PyQt5 with the py36 environment activated, it says the package is not installed:
Which one is correct? Is PyQt5 installed or not? I cannot test with code because I am reinstalling Qt5 on this machine.

