我正在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
请让我知道如何进行此操作。 谢谢。
答案 0 :(得分:0)
在文件的倒数第二行中以同样的方式修改PATH
。
PATH="/Users/rishika/flutter/bin:$PATH"
export PATH
可能是不必要的(尽管无害); PATH
是从父进程继承的,或者是从/etc/profile
之类的系统文件导出的,因此已经标记为要导出。