1. 启动终端Terminal 2. 进入当前用户的home目录 输入cd ~ 3. 创建.bash_profile 输入touch .bash_profile 4. 编辑.bash_profile文件 输入open .bash_profile ...
参考:http: mirrors.ustc.edu.cn help homebrew bottles.html 或者: 创建 .bash profile 查看 编辑 .bash profile 文件 更新刚配置的环境变量 一般在Mac上配置环境变量时经常要创建 编辑 .bash profile文件。 ...
2018-07-19 12:50 0 7803 推荐指数:
1. 启动终端Terminal 2. 进入当前用户的home目录 输入cd ~ 3. 创建.bash_profile 输入touch .bash_profile 4. 编辑.bash_profile文件 输入open .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,执行生效的指令 由于我每次关闭 ...