Search code examples
xcodepermissionssudo

How can I change the Xcode project so I don't have to run it in SUDO Mode


I can only run my Xcode project in sudo mode. If I don't run it in sudo, Xcode can't read the project file. How can I change this?


Solution

  • I ran these command in my terminal.

    sudo chmod -R 777 my directory
    

    This allowed me to open up my project in without running sudo.