How do you update Xcode on OSX to the latest version?

后端 未结 12 1548
清歌不尽
清歌不尽 2020-11-30 19:38

What is the easiest way to update Xcode on OSX?

I see this in the terminal:

$ brew install xxxxxxx
Warning: Your Xcode (4.3.3) is outdated
Please ins         


        
12条回答
  •  攒了一身酷
    2020-11-30 20:29

    Another best way to update and upgrade OSX development tools using command line is as follows:

    Open terminal on OSX and type below commands. Try 'sudo' as prefix if you don't have admin privileges.

    brew update
    

    and for upgrading outdated tools and libraries use below command

    brew upgrade
    

    These will update all packages like node, rethinkDB and much more.

    Also, softwareupdate --install --all this command also work best.

    Important: Remove all outdated packages and free some space using the simple command.

    brew cleanup
    

提交回复
热议问题