Open olilarkin opened 1 year ago
Hi @olilarkin
Thanks for the report! I remember I added this <1.5.0
because the build was failing on Windows, but I didn't investigate more on it, and I totally should as this is quite restrictive.
I think that was is happening is that a 1.4.x
wheel is not available for your platform, which might be a combination of machine architecture, macOS version as well as python3
version, so please could you tell me:
python3 --version
are you running?python3
is running by running the command below:
python3 -c 'import os.path; import sys; print(os.path.realpath(sys.executable))'
Thanks!
I was also getting the same error.
/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/bin/python3.9
I noticed from getting this info that the last instance of Python existed within Xcode, so I manually deleted /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/
and reinstalled Python from https://www.python.org/downloads/macos.
After doing that it built successfully 🎉
The docs currently say to ensure that which python3
doesn't include Xcode anywhere in the path, though mine didn't include Xcode but still failed. Would it be worth including the python3 -c 'import os.path; import sys; print(os.path.realpath(sys.executable))'
check in the docs too?
Hi @olicarter
Great! Thanks for the feedback.
Yeah indeed, I guess that which python3
returns /usr/bin/python3
? Which I guess then itself is a symlink to the Python in your Xcode installation?
I guess I could indeed put this quickly in a troubleshooting section in the documentation, but I guess I could also do this in the environment check prior to installation. What do you think?
hey!
when following the tutorial for macos with xcode. I got an error
in order to fix it, i removed the version number from cairocffi here:
https://github.com/ohmtech-rdi/eurorack-blocks/blob/341e72b52465b0cdf94ff4fb8a463d0c5c70fe94/requirements/build-system.txt#L5