Just today, Feb-10-2024 I visited a site for weather data (url not noted). Shortly after that I started getting this pop-up (see image) in the notifications (upper right corner of screen). I did not download any software, data sets or images. Any solutions?
You somehow landed on the macosx-update[dot]com website and were tricked into giving notification permissions to that site. Removing those notification permissions, as Al mentioned, is the solution. You may also wish to consider unchecking the box titled "Allow websites to ask for permission to send notifications" in the same preferences panel Al referred you to, to prevent this from happening again in the future.
Download File ✔ https://t.co/8q6OBw6MS6
I am building a script from the command line in MacOS Ventura 13.0.1 Using Apple Swift version 5.7.1 and want to copy / move / link the resulting executable so I used swift's --show-bin-path option which says /Users/iainhouston/Projects/swift-count/.build/arm64-apple-macosx/release whereas swift has actually built it into /Users/iainhouston/Projects/swift-count/.build/x86_64-apple-macosx/release.
Is this a bug or do I have to say something special in my Package.swift?
I ran into the same problem. While root 6.22 was running well in Big Sur 11.0, this error now shows after the first major update to 11.1. Now the ComandLineTools are not found anymore at the given path, because it changed to
I had the same issue.
Following your error output, you would be able to fix this by going in to your /Library/Developer/CommandLineTools/SDKs/ directory and pasting
sudo ln -s MacOSX.sdk/ MacOSX11.0.sdk
but root 6.22/06 searches explicitly for MacOSX11.0.sdk. It seems that the new numbering scheme from Apple created some mess here. Creating a symlink solved the problem for me but others might run into the same issue:
sudo ln -s MacOSX.sdk MacOSX11.0.sdk
after the Xcode package is installed from the Apple Store. I ran into this problem yesterday when I was installing the latest (April 14, 2021) macosxarm64 version on a newly purchased Silicon iMac running Big Sur Version 11.4. The xcode-select --install command should download another package from the Apple Store, taking about 8 minutes to complete.
795a8134c1