Closed ghost closed 11 months ago
FYI, I was helping someone debug this issue on their Mac and when they ran your command from this SO answer:
bash /Applications/Python*/Install\ Certificates.command
It only seemed to pick up on and run their 3.10 certificates command. He ended up navigating to the 3.11 folder and clicking on the command file, then everything worked.
I'm not on a Mac and my debugging session with him is over but I thought I should say maybe double check that the shell expansion actually grabbed the command file for 3.11.
I have been solving what you are describing by using
find /Applications/Python3* -depth 0 -type d -exec '{}/Install Certificates.command' \;
Which goes through all Python3 version folders and executes the command. Thanks for pointing that out!
SSL error that I have since today.
As a workaround I use
--ignore_ssl_certs
as mentioned in #269 .In my original setup script I use
bash /Applications/Python*/Install\ Certificates.command
before creatingnodeenv
but it still failed. I had this issue before and this was my fix back then.I'm on
macos 13.3.1
and usepython 3.11.2
.