-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip install DisplayCAL fails on Windows 11 with Python 3.11.4 #274
Comments
Hey @agjell note that installing and running displaycal on windows is atm not truly supported. You would have to make changes to several files just in order to make displaycal start on windows and even then you would not be able to perform a calibration. Independently of that, the error comes from the missing package pywin32. This can be solved by |
Ok, noted :) |
I have encountered the same issue as well, ensuring that pywin32 is installed. C:\Users\q1ngyang>pip list pypiwin32 223 C:\Users\q1ngyang>pip install DisplayCAL × Getting requirements to build wheel did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. × Getting requirements to build wheel did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. |
pywin32 would have to be specified in project.toml - however that will break non-windows builds. As such, the setup.py has to be modified to add build system dependencies dynamically as per: |
Fixed in my pull request. |
the commit seems to work. clone the project from dev branch #!C:\Python312\python.exe -- coding: utf-8 --from DisplayCAL.main import main main() |
The commit does not fix the executable creation and the shell script is a Bash script, not PowerShell. You can run DisplayCal in the virtualenv after installing for the moment, using: or in the source code directory |
Fixed with #312 |
The text was updated successfully, but these errors were encountered: