Monday 24 April 2017

macos - Setting PATH environment variable in OSX permanently



I have read several answers on how to set environmental variables on OSX as permanently.



First, I tried this, How to permanently set $PATH on Linux/Unix? but I had an error message saying no such file and directory, so I thought I could try ~/.bash_profile instead of ~/.profile but it did not work.



Second, I found this solution How to set the $PATH as used by applications in os x , which advices to make changes in





~/.MacOSX/environment.plist




but again I had no such file and directory error.



I need a way to set these variables such that it won't require to set them again and again each time I open a new terminal session.


Answer



You have to add it to /etc/paths.




Reference (which works for me) : Here


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...