Reputation: 13713
I wanted to play with Hyperloop lately so I tried to pull latest SDK from command line. While trying to do that I got messages that /Users/my_user/.appcelerator/install
is not writeable and told me to run the following commands:
sudo chown -R my_user /Users/my_user/.appcelerator/install
chmod -R 0700 /Users/my_user/.appcelerator/install
now when I try to start Appcelerator Studio I get the same message. not that I have a problem running the command - but why does it keep repeating itself?
Edit
after running those command Studio still not loading and showing that message
Upvotes: 1
Views: 59
Reputation: 13713
I was able to solve the problem by running the following command in terminal:
sudo chown -Rv [USERNAME] /Users/[USERNAME]
Upvotes: 3