- Mar 7, 2019
- 1,109
- 921
pip3 is only a formality, since on linux there are still some programs using python 2.x and so pip2 is for python 2 while pip3 is for python 3. on most recent distros just using pip will use pip3 but i specified it to be sure. on windows it should not make a difference anyway since python is not preinstalled.You're OP shows a commandl ine using pip3 and requirements_linux.txt...
i use requirements_linux.txt because you are looking in the linux install instructions. on windows you need requirements.txt. i did not write the windows python instructions because i felt that most windows users wont want to install python and if you want to do it then you probably can figure it out.
yes, pywin32 is the only difference between the files, and i feel like it is self explanatory why. the 32 is normal, windows has always been the same codebase, just expanded through the years so some old naming conventions remained. windows is often called win32 (no matter what bitness you are running), thats where it comes from. also for a bit of humor (though extremely true):What I notice right of the bat is that the requirements.txt file has a pywin32 entry, but I installed Pyton 3.10 x64...
youre not doing anything wrong, the install is simply failing. having a read in the log you can see that the issue is PyQt5. googling some of those errors i can see that often the fix is to update pip. you have the command to do that stated at the end of the log.But even with the line commented out, I'm still getting a shitload of errors trying to install the requirements...
I've attached the output... maybe you know what I'm doing wrong?