Dpeta / pesterchum-alt-servers

Instant messaging client copying the look and feel of clients from Andrew Hussie's webcomic Homestuck.
https://pesterchum.xyz
GNU General Public License v3.0
78 stars 20 forks source link

PyQt5 and ostools won't install #34

Closed necropurity closed 3 years ago

necropurity commented 3 years ago

after learning how to work python, download pip and install python dependencies, ive come to a solid bust that is:

"ERROR: Could not find a version that satisfies the requirement PyQt5 (from versions: none) ERROR: No matching distribution found for PyQt5"

and

"ERROR: Could not find a version that satisfies the requirement ostools (from versions: none) ERROR: No matching distribution found for ostools"

everything else was able to be installed, and running "python pesterchum.py" doesn't work so im at a complete loss here

im not very tech savvy, so im glad i even managed to get to a point, but now im just discheesed that i cant get in. not to mention im on a mac so everytime i try to directly open the only file that says pesterchum, my damned macOS stuff keeps blocking things they cant verify so that blows

Dpeta commented 3 years ago

Are you certain you're running Python 3 and not Python 2? That could be one reason why it can't find the distributions. You could make sure you're running the correct version with python --version. Or perhaps you have multiple versions of Python installed? In that case you could make sure you're running the correct pip with pip3 or python3 -m pip, if that's available on your system.