Where do I find the bashrc file on Mac?

后端 未结 7 1211
死守一世寂寞
死守一世寂寞 2020-12-04 08:30

Hello I am following this page.. I\'m installing Python onto my mac so that I can set up a Django / Eclipse development environment.
However I am not too su

7条回答
  •  攒了一身酷
    2020-12-04 08:43

    On your Terminal:

    • Type cd ~/ to go to your home folder.

    • Type touch .bash_profile to create your new file.

    • Edit .bash_profile with your code editor (or you can just type open -e .bash_profile to open it in TextEdit).
    • Type . .bash_profile to reload .bash_profile and update any functions you add.

提交回复
热议问题