When I run pip install QtCore it returns:
ERROR: Could not find a version that satisfies the requirement QtCore (from versions: none)
ERROR: No matching distribution found for QtCore
When I run pip install QtCore it returns:
ERROR: Could not find a version that satisfies the requirement QtCore (from versions: none)
ERROR: No matching distribution found for QtCore
QtCore does not exist on Pypi. What you probably want is PyQt5:
and then access QtCore like this:
See the PyQt5 documentation.