Installation Problem on MacOS 15.3.1

After installing Julia 1.11 on Mac OS 15.3.1 (Mac mini) and starting the following message occurs:
“julia” kann nicht geöffnet werden, weil Julia nicht erlaubt ist, Dokumente in Terminal zu öffnen.
Any suggestions?

Did you use the .dmg or the path via juliaup? I would recommend installing juliaup – it is nicer to install, easier to update your Julia version, even have different Julia versions installed at the same time…

edit: Willkommen in der Julia community! :waving_hand:

In fact my solve way is different, because I can’t download the Julia correctly. Even if I download it, I get the same warning as you, and then I can’t run Julia in teminal. Chatgpt tell me that my problem is “both my .bash_profile and .zshrc files are owned by root and not macbookpro, which is likely the reason why the installer couldn’t modify them. To fix this, I’ll need to change the ownership of these files to my user account (macbookpro) and allow write permissions.” So I changed ownership of the files to my user (macbookpro):
sudo chown macbookpro:staff ~/.bash_profile
sudo chown macbookpro:staff ~/.zshrc
Then changed permissions to allow write access:
chmod +rw ~/.bash_profile
chmod +rw ~/.zshrc
Finally re-run the installation process for juliaup.
This time, the installer can modify my shell configuration files and complete the installation. I’m not sure if your problem is the same as mine, but my words of warning are the same as yours.