Setting environment variables on OS X

后端 未结 30 3172
你的背包
你的背包 2020-11-21 05:15

What is the proper way to modify environment variables like PATH in OS X?

I\'ve looked on Google a little bit and found three different files to edit:

30条回答
  •  无人共我
    2020-11-21 05:41

    Just did this really easy and quick. First create a ~/.bash_profile from terminal:

    touch .bash_profile
    

    then

    open -a TextEdit.app .bash_profile
    

    add

    export TOMCAT_HOME=/Library/Tomcat/Home
    

    save documement and you are done.

提交回复
热议问题