如何在 Android Studio on Mac os 中提供 Flutter SDK 路径,如何在 MACOS 中更新 Flutter SDK 路径?

How to give Flutter SDK Path in Android Studio on Mac os, How to update Flutter SDK path in MACOS?

我已经安装了 Android studio 和插件的 DART,FLUTTER 来启动 flutter,但是因为我在创建我的第一个 flutter 项目时无法提供 sdk 的路径。

我试图找出解决方案没有找到解决方案.. 最后,这是我已经实施并为我工作的步骤。 先决条件:-

  1. 安装Android工作室

  2. 安装插件以启动 flutter 项目(DART、FLUTTER)

你可以在 android studio --> preferences --> Plugins

中找到这个

现在您必须将 Flutter SDK 路径设置到您的 Android 工作室

  1. 下载 Flutter SDK

  2. 解压到你想要的位置(例如-/Users/vrushali/Downloads/flutter

  3. 打开你的Android studio --> 开始一个新的Flutter Project --> select default application --> next --> select flutter sdk path --> browse到。下载并提取 flutter sdk 的位置 --> select flutter --> bin --> 然后说好 搞定..!您的项目将在一段时间后创建 :)

如果你想跳过,还有更好的方法

Open your Android studio --> start a new Flutter Project --> select default application --> next --> select flutter sdk path --> browse to the . location where you have download and extract your flutter sdk --> select the flutter --> bin

每次打开 android 项目时都这样做

第一步:

open ~/.bash_profile

Step2粘贴

PATH="/Users/vrushali/Downloads/flutter/bin:${PATH}"
export PATH

这将永久添加路径

asdf

如果你已经使用asdf安装Flutter SDK.

可以通过以下命令找到flutter的位置,

  1. 在终端中打开asdf的位置

    open ~/.asdf
    
  2. .asdf 文件夹中转到 installs 文件夹,然后转到 flutter 文件夹。在 flutter 文件夹中会找到当前版本的 Flutter SDK 作为文件夹名称。

    例如,在我的例子中,文件夹名称是 1.12.13+hotfix.7-stable,文件夹的路径是 /Users/akarshseggemu/.asdf/installs/flutter/1.12.13+hotfix.7-stable

我问了制作 flutter 插件的人,他们帮助了我。为了让 flutter 与你的 IDE 一起工作(在 Android 中没有这样做,但在 VScodium 或 Vscode 中有)。

在命令行中: asdf 颤动

在文本文档中:

导出 FLUTTER_ROOT="$/asdf/where/flutter/answer/should/go/here"

将其添加到您的 bash_profile 上方 asdf 部分。否则您的 asdf 安装将无法运行。 使用 nano:ctrl+o,回车,ctrl+x。

给你的 IDE 安装路径,它应该可以工作。如果没有,更改需要生效,重新启动计算机。

只需提供您保存的flutter软件的位置即可。

For update flutter SDK path in Mac,

1. First your default shell using echo $SHELL command in Terminal.
2. Use below commane to open vim editor and update Path.
    - if it is Bash then type vim $HOME/.bash_profile or vim $HOME/.bashrc 
    - if Z shell then type vim $HOME/.zshrc
3. Type i to enter INSERT mode (or esc to exit INSERT mode).
4. Type export PATH="$PATH:[YOUR_PATH]/flutter/bin" replacing [YOUR_PATH] with the path to the folder where you moved the flutter folder earlier ex. export PATH="$PATH:/Users/Your_User/Your_Dev_Folder/flutter/bin"
5. Type esc, then :wq! to save and exit.
6. Quit the Terminal and open it again to refresh.
7. Type echo $PATH to check that the path was correctly added.       
8. Type which flutter to verify the flutter command is available.       
9. Type flutter --version to check the Flutter version.

这对我有用(对于 ZSH 用户)

Open terminal & run this command

touch $HOME/.zshrc

Run this command

sudo nano ~/.zshrc

Type the path like this

export PATH=$PATH:/Path to your extracted flutter/Flutter/bin

Press ctrl+x then press y Press Enter Close the terminal and open a new terminal and run this command

flutter --version