我正在mac上安装Flutter,需要在.bash_profile文件中添加一个路径。但它已经有内容了,我不想把我的东西搞砸。那么我该怎么做呢?
这就是我当前.bash_profile中的内容:
export JAVA_HOME=$(/usr/libexec/java_home)
# Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH
我需要添加:
export PATH="/Users/rishika/flutter/bin:$PATH"
以便安装Flutter
请让我知道怎么做。谢谢
在文件的倒数第二行修改PATH
的方式相同。
PATH="/Users/rishika/flutter/bin:$PATH"
export PATH
可能是不必要的(尽管无害(;PATH
要么从父进程继承,要么从类似/etc/profile
的系统文件导出,因此已标记为导出。