一般在Mac上配置环境变量时经常要创建、编辑 .bash_profile文件。 ...
. 启动终端Terminal . 进入当前用户的home目录 输入cd . 创建.bash profile 输入touch .bash profile . 编辑.bash profile文件 输入open .bash profile 第一种方式 lt gt 为在弹出的.bash profile文件内进行编辑 lt gt 编辑完成后直接保存文件 lt gt 关闭.bash profile文件 lt ...
2019-06-05 13:53 0 2917 推荐指数:
一般在Mac上配置环境变量时经常要创建、编辑 .bash_profile文件。 ...
touch ~/.bash_profile; // 将目录跳转到.bash_profile这个文件夹 open -t ~/.bash_profile //打开.bash_profile文件 这时候会弹出一个新的窗口输入 export PATH=$PATH:/Users/XXXXX ...
1、打开terminal(终端) 2、cd ~ ( 进入当前用户的home目录) 3、open .bash_profile (打开.bash_profile文件,如果文件不存在就 创建文件:touch .bash_profile 编辑文件:open -e bash_profile ...
1. 启动终端Terminal 2. 进入当前用户的home目录 输入cd ~ 3. 创建.bash_profile 输入touch .bash_profile 4. 编辑.bash_profile文件 输入open -e .bash_profile ...
.bash_profile配置文件 手动删掉淘汰了的python2,用command line too ...
开发Android的环境要重新在Mac上搭建,结果在配置环境变量时找不到.bash_profile文件。查过很多资料解决方案都很笼统,结果还是在英文网站上找到解决方法。 1. 启动终端Terminal 2. 进入当前用户的home目录 ...
说说配置环境变量的方法: vim ~/.bash_profile 进入配置文件 添加路径例如: PATH=$PATH:\/Users/linyue/mywork/script:\ 保存后退出,source ~/.bash_profile,执行生效的指令 由于我每次关闭 ...